Created
March 8, 2022 10:50
-
-
Save Farhandroid/707fea2c896316b6ecd2ebce355c62b2 to your computer and use it in GitHub Desktop.
SplashScreenDesign
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Box( | |
| modifier = Modifier | |
| .background(color = Purple700) | |
| .fillMaxSize(), | |
| contentAlignment = Alignment.Center | |
| ) { | |
| Column(modifier = Modifier, | |
| horizontalAlignment = Alignment.CenterHorizontally, | |
| verticalArrangement = Arrangement.Center) { | |
| Image(painter = painterResource(id = R.drawable.love), | |
| contentDescription = "Love", | |
| contentScale = ContentScale.Fit, | |
| modifier = Modifier.size(150.dp)) | |
| Text(text = "JC is Awesome", | |
| style = MaterialTheme.typography.h5, | |
| color = Color.LightGray) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment