Tlaster
Tlaster
@Matcha-xiaobin 麻烦传一个git repo,文件下载提示有病毒
测试在 https://github.com/Tlaster/PreCompose/pull/251/commits/313ce550c19ef3b4c264404864086820c7fd2805 commit之后会被修复,下一个版本(1.6.0-rc03)会包含这个修复
Hi can you provide some sample code that reproduce this issue?
Seems like you're fetching from `LaunchedEffect` ```Kotlin LaunchedEffect(Unit) { viewModel.getGroupPlace(currentPage, pageCount) //... } ``` `LaunchedEffect(Unit)` will run [When `LaunchedEffect` enters the Composition](https://developer.android.com/develop/ui/compose/side-effects#launchedeffect), in this case, when you're navigating from `GroupsScreen`...
You can place your API call in ViewModel's initializer.
This is by design, only one dialog/floating can be shown at the same time.
Seems like the same case as #342
Hi, can you provide a sample than can reproduce the issue?
Duplicate with #162 , but the fix in that PR is not working for current version, I still try to find a way to avoid unnecessary recomposition.
No update yet, since compose multiplatform 1.7 is around the corner, I need to migrate to the compose 1.7 first, which might not be an easy work since `SeekableTransitionState` API...