Archie
03/24/2023, 7:25 AMDecompose
and simply just checking it out for our usecase.
I am having trouble understanding how to setup the navigation.
If I have multiple screen:
Login
|
---> Dashboard
|
---> SignUp
|
---> Create Password
|
---> Dashboard
Do I just declare it as a Single Stack Navigation:
sealed class Child {
class Login() : Child()
class SignUp() : Child()
class CreatePassword() : Child()
class Dashboard() : Child()
}
My other question is how does OverlayNavigation<DialogConfig>()
fit into this if I need some Dialog PopUps?Arkadii Ivanov
03/24/2023, 9:32 AMArchie
03/24/2023, 9:34 AMArkadii Ivanov
03/24/2023, 9:38 AMArchie
03/24/2023, 11:08 AM