guia icon indicating copy to clipboard operation
guia copied to clipboard

Navigation Component for Jetpack Compose with support for screens, dialogs, bottomsheets, transitions and multi module projects

Results 2 guia issues
Sort by recently updated
recently updated
newest added

1. Navigation providers (`LocalNavigator`, `LocalParentNavigator`, `LocalNavHost`) have opened to allow creating a custom `NavContainer`s 2. Migration to familiar CompositionLocal format (`localNavigator()` -> `LocalNavigator.current`, `requireLocalNavigator()` -> `LocalNavigator.currentOrThrow`)

So i'm working on a project where I'm building a compose navigator which gets composables from outside Composable code For this purpose the implementation is kept simple: Maintain a list...