Skip to content

Instantly share code, notes, and snippets.

@kirich1409
Last active October 13, 2019 15:01
Show Gist options
  • Save kirich1409/c856337cd9e97d7a2071403a993c5add to your computer and use it in GitHub Desktop.
Save kirich1409/c856337cd9e97d7a2071403a993c5add to your computer and use it in GitHub Desktop.
Jetpack Compose sample. Composable function
@Composable
fun Hello(name: String) = MaterialTheme {
FlexColumn {
inflexible { // Item height will be equal content height
TopAppBar<MenuItem>( // App Bar with title
title = { Text("Jetpack Compose Sample") }
)
}
expanded(1F) { // occupy whole empty space in the Column
Center { // Center content
Text("Hello $name!") // Text label
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment