python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Android Jetpack Compose Multiple Layer Navigation
I have multiple destination,and some of the destinations also have subsidiary destinations represented by a Navigation component to interact with.
NavigationBar {
page1 {
NavigationBar {
...
宇文长庆
Votes: 0
Answers: 1
Compose - NavHost recomposition multiple times
During navigation from Navhost, I found out that the composable screens are getting recomposition multiple times. Because of it, my ViewModel is calling API data source multiple times too.
@Composable...
LMaker
Votes: 0
Answers: 2
Android - Custom NavType for List<Enum<*>>
I am trying to create a custom NavType for Enum with below code:
class EnumListType<T : Enum<T>> : NavType<List<T>>(true) {
@Suppress("TYPE_MISMATCH_WARNING")
...
Chandra Sekhar
Votes: 0
Answers: 1
Remove Fragment from backstack with Navigation components
I have a PinCreateActivity with a navHost fragment with 2 Fragments PinSetup and PinCreate fragments.
When the Activity launches, the PinSetup is the default fragment and after that with a click butto...
james04
Votes: 0
Answers: 1