Skip to content

Instantly share code, notes, and snippets.

@ssindher11
Last active January 19, 2022 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssindher11/db9d604c8f3ce0fa5f9c7c0eb5478f2c to your computer and use it in GitHub Desktop.
Save ssindher11/db9d604c8f3ce0fa5f9c7c0eb5478f2c to your computer and use it in GitHub Desktop.
Movie Booking
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MovieBookingScreen()
}
}
}
@Preview(showBackground = true)
@Composable
fun DefaultPreview() {
MovieBookingScreen()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment