Created
January 18, 2021 12:41
-
-
Save sasssass/e7cea332a66f1ae749d206e58015afd5 to your computer and use it in GitHub Desktop.
Greeting.kt
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
@Preview | |
@Composable | |
fun Greeting() { | |
Column( | |
modifier = Modifier.padding(16.dp) | |
) { | |
Text("Some Text" , color = Color.Blue , | |
modifier = Modifier.padding(16.dp)) | |
Image(imageResource(R.drawable.header) , | |
modifier = Modifier.height(40.dp) , | |
contentScale = ContentScale.Crop) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment