Is your feature request related to a problem? Please describe.
Koin already supports navigation3 as described on the official website here. Now that annotations are supported along with compiler plugin, it would be nice to have support for navigation3 as well.
Describe the solution you'd like
To be able to do something like:
@Module
@ComponentScan
@Configuration
object NavModule {
@Navigation(binds = [Screen.About::class])
@Composable
fun provideAbout() = AboutScreen(onNavigateUp = {...})
}
Describe alternatives you've considered
Building a module using DSL and providing it to the KoinApplication manually.
Target Koin project
koin-compiler-plugin = = "1.0.0"
koin-annotations = "4.2.1"
koin-compose-navigation3 = "4.2.1"
koin-compose-viewmodel = "4.2.1"
Is your feature request related to a problem? Please describe.
Koin already supports navigation3 as described on the official website here. Now that annotations are supported along with compiler plugin, it would be nice to have support for navigation3 as well.
Describe the solution you'd like
To be able to do something like:
Describe alternatives you've considered
Building a module using DSL and providing it to the
KoinApplicationmanually.Target Koin project
koin-compiler-plugin = = "1.0.0"
koin-annotations = "4.2.1"
koin-compose-navigation3 = "4.2.1"
koin-compose-viewmodel = "4.2.1"