Viachaslau Katsuba

Results 18 comments of Viachaslau Katsuba

UPD4: looks like it make sense to have multiple navDest functions ``` val Screen by simpleNavDestination == navDestination val Screen by navDestination val Screen by navDestination(navArgsSaver:Saver, freeArgsSaver:Saver, navResultSaver:Saver, ...) ```

Done https://github.com/ComposeGears/Tiamat/pull/209

@64ArthurAraujo Thanks for reaching, will take a look onto this.

@64ArthurAraujo Looks like you'r using `viewModel: LoginViewModel= viewModel()`, can you try to use `val viewModel = hiltViewModel()` instead? (at least in order to verify) Will check this casess too

Thx for info, going to focus on this issue. Planing fix would be either in the intermediate release (2.2.0-alpha01) together with compose 1.10.?-betha0? or else 2.2.0+ compose 1.10.0 release

@64ArthurAraujo Some basic fix is ready, need to test it before release...

WIP: Bug-src Hilt rely on `ModelStoreOwner is HasDefaultViewModelProviderFactory` installed by one of hilts annotations for activity/fragment Nav3 solve it manually by this: https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:lifecycle/lifecycle-viewmodel-navigation3/src/commonMain/kotlin/androidx/lifecycle/viewmodel/navigation3/ViewModelStoreNavEntryDecorator.kt;drc=94a24fe852d2e840c246bfe40f201a5272da9f8d;l=104 We: redirect this interface to host with...