Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AungThiha/754e45d14fe72e1ff4ffa2369a1683fa to your computer and use it in GitHub Desktop.

Select an option

Save AungThiha/754e45d14fe72e1ff4ffa2369a1683fa to your computer and use it in GitHub Desktop.
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MyApplicationTheme {
// A surface container using the 'background' color from the theme
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colorScheme.background
) {
RecipeDetail()
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment