Skip to content

Instantly share code, notes, and snippets.

@plnice
Created February 1, 2022 19:42
Show Gist options
  • Save plnice/390add0b8181a0567900107dfea8960b to your computer and use it in GitHub Desktop.
Save plnice/390add0b8181a0567900107dfea8960b to your computer and use it in GitHub Desktop.
// MainActivity.onCreate
setContent {
First(customTabs)
}
// Module :first
@Composable
fun First(customTabs: CustomTabs) {
Second(customTabs)
}
// Module :second
@Composable
fun Second(customTabs: CustomTabs) {
Third(customTabs)
}
// Module :third
@Composable
fun Third(customTabs: CustomTabs) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment