Tlaster

Results 180 comments of Tlaster

>One thing the Pager has is the out of the box ability to switch screens by swiping (instead of tapping the icons at the bottom). I suppose I'd need to...

Currently you can have a composable that does the same thing and wrap your screen like this: ```Kotlin @Composable fun YourScaffhold( navigator: Navigator, content: @Composable () -> Unit, ) {...

1.7.0 stable might be able to use compose-jb 1.3.0,[it's just around the corner](https://github.com/JetBrains/compose-jb/pull/2627).

Currently ViewModel can not scoped to an NavHost, so the best way is to passing a ViewModel in a Nested NavHost, just like what you do right now.

I am currently reworking this, which may also address issue #288, as both appear to stem from the same underlying cause. The current implementation is rather unrefined and problematic, especially...

It appears that `rememberNavigator` consistently returns the same `Navigator`. One possible workaround is to assign a unique name each time `rememberNavigator` is used. Perhaps we should consider automatically assigning different...

我没有办法复现这个问题,可以提供完整的复现repo吗?