Created
November 21, 2022 12:24
-
-
Save nikolovlazar/93f786e34cbf62d429908d0dd6c00d60 to your computer and use it in GitHub Desktop.
An example Modal UI built with Jetpack Compose.
This file contains 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
@Composable | |
fun Modal() { | |
Column( | |
horizontalAlignment = Alignment.CenterHorizontally, | |
modifier = Modifier.padding(40.dp), | |
) { | |
Icon( | |
Icons.Filled.Email, | |
"icon", | |
tint = Color(52, 120, 246), // similar to the iOS one | |
modifier = Modifier.size(48.dp) | |
) | |
Text( | |
"Sign up to our newsletter!", | |
fontWeight = FontWeight.Black, fontSize = 24.sp, | |
modifier = Modifier.padding(top = 16.dp) | |
) | |
Text( | |
"Since you love our content so much, why not get them every day in your inbox?", | |
textAlign = TextAlign.Center, | |
color = Color.Gray, | |
fontSize = 14.sp, | |
modifier = Modifier.padding(top = 16.dp) | |
) | |
Row( | |
verticalAlignment = Alignment.CenterVertically, | |
modifier = Modifier | |
.padding(top = 16.dp) | |
.height(56.dp) | |
) { | |
TextField( | |
"", | |
onValueChange = {}, | |
placeholder = { Text("john@doe.xyz") }, | |
colors = TextFieldDefaults.textFieldColors( | |
backgroundColor = Color.White, | |
), | |
modifier = Modifier | |
.border(BorderStroke(1.dp, Color.Black)) | |
.weight(1f) | |
.background(Color.White) | |
.fillMaxHeight() | |
) | |
Button( | |
onClick = { /* handle onClick logic */ }, | |
colors = ButtonDefaults.buttonColors( | |
backgroundColor = Color.Black, | |
contentColor = Color.White, | |
), | |
contentPadding = PaddingValues(horizontal = 16.dp, vertical = 10.dp), | |
shape = RoundedCornerShape(0.dp), | |
modifier = Modifier.fillMaxHeight() | |
) { | |
Text("Subscribe") | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment