Skip to content

Instantly share code, notes, and snippets.

@sasssass
Created January 18, 2021 12:41
Show Gist options
  • Save sasssass/e7cea332a66f1ae749d206e58015afd5 to your computer and use it in GitHub Desktop.
Save sasssass/e7cea332a66f1ae749d206e58015afd5 to your computer and use it in GitHub Desktop.
Greeting.kt
@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