Esmaeel Nabil
08/28/2020, 4:01 PMEsmaeel Nabil
08/28/2020, 4:02 PMAfzal Najam
08/28/2020, 4:05 PM@Composable
fun MainScreen() {
val currentScreenState = remember { } // current screen here
Column {
renderCurrentScreen(currentScreenState)
Row {
renderTabs(currentScreenState)
}
}
}
Then use the currenScreenState for highlighting the tabs.
I think this might break down if there's deeper navigation in each tab though...or maybe it won't?Esmaeel Nabil
08/28/2020, 4:06 PM