.
My question is, for nested navigation like this, do we need to create a screen for each parent component? For example, here we have the Signed Out and Signed In components. Do we need to create a composable SignedOutScreen and SignedInScreen as the parent composable for the child components/composables underneath?
a
Arkadii Ivanov
02/14/2025, 12:59 PM
Usually there is a composable function for every component.
a
Adi Trioka
02/15/2025, 4:05 AM
@Arkadii Ivanov Ah yes, you’re right. That totally makes sense. Thanks, Arkadii! 🙏