|
1 | 1 | package processing.app.ui |
2 | 2 |
|
3 | 3 | import androidx.compose.animation.AnimatedVisibility |
4 | | -import androidx.compose.animation.EnterExitState |
5 | 4 | import androidx.compose.animation.core.LinearEasing |
6 | 5 | import androidx.compose.animation.core.tween |
7 | 6 | import androidx.compose.animation.fadeIn |
8 | 7 | import androidx.compose.animation.fadeOut |
9 | 8 | import androidx.compose.foundation.Image |
10 | 9 | import androidx.compose.foundation.layout.fillMaxSize |
11 | | -import androidx.compose.foundation.layout.padding |
12 | 10 | import androidx.compose.foundation.shape.RoundedCornerShape |
13 | | -import androidx.compose.material.Text |
14 | 11 | import androidx.compose.runtime.* |
15 | 12 | import androidx.compose.ui.Alignment |
16 | 13 | import androidx.compose.ui.Modifier |
17 | 14 | import androidx.compose.ui.draw.clip |
18 | | -import androidx.compose.ui.draw.shadow |
19 | 15 | import androidx.compose.ui.graphics.toComposeImageBitmap |
20 | 16 | import androidx.compose.ui.unit.DpSize |
21 | 17 | import androidx.compose.ui.unit.dp |
22 | 18 | import androidx.compose.ui.window.* |
23 | | -import kotlinx.coroutines.Dispatchers |
24 | 19 | import kotlinx.coroutines.delay |
25 | 20 | import kotlinx.coroutines.launch |
26 | 21 | import processing.app.Base |
27 | 22 | import processing.app.Platform |
28 | 23 | import javax.imageio.ImageIO |
29 | | -import javax.swing.SwingUtilities |
30 | 24 |
|
31 | 25 | /** |
32 | 26 | * Show a splash screen window. A rewrite of Splash.java |
|
0 commit comments