resaca icon indicating copy to clipboard operation
resaca copied to clipboard

Compose Multiplatform library to scope ViewModels to a Composable, surviving configuration changes and navigation

Results 9 resaca issues
Sort by recently updated
recently updated
newest added

Bumps androidx.compose.compiler:compiler from 1.5.10 to 1.5.11. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.compose.compiler:compiler&package-manager=gradle&previous-version=1.5.10&new-version=1.5.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps org.jetbrains.kotlin.android from 1.9.22 to 1.9.23. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.kotlin.android&package-manager=gradle&previous-version=1.9.22&new-version=1.9.23)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 1.9.22-1.0.18 to 1.9.23-1.0.19. Release notes Sourced from com.google.devtools.ksp's releases. 1.9.23-1.0.19 New APIs #1708 SymbolProcessorEnvironment.kspVersion #1707 CodeGenerator.associateWithFunctions and CodeGenerator.associateWithProperties Issues fixed in KSP2 #1691 IllegalStateException: Value type not...

dependencies

Bumps `agp` from 8.3.2 to 8.4.0. Updates `com.android.application` from 8.3.2 to 8.4.0 Updates `com.android.library` from 8.3.2 to 8.4.0 Dependabot will resolve any conflicts with this PR as long as you...

dependencies

Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 1.9.23-1.0.20 to 1.9.24-1.0.20. Release notes Sourced from com.google.devtools.ksp's releases. 1.9.24-1.0.20 KSP 1.0.20 for kotlin compiler version 1.9.24 Commits ebe908a UPDATE_KOTLIN_VERSION: 1.9.24 bd930df Reapply "UPDATE_KOTLIN_VERSION: 1.9.23" ed69ac3 Reapply...

dependencies

Bumps org.jetbrains.kotlin.android from 1.9.23 to 1.9.24. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.kotlin.android&package-manager=gradle&previous-version=1.9.23&new-version=1.9.24)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Hi! Now that the Jetpack lifecycle and view model libraries have multiplatform support, I was wondering if this library could be made multiplatform compatible. In my case, I'm thinking of...

enhancement

I use this library in my projects, especially when I use ViewModel in ModalBottomSheets and composables that don't have navigation. For one of my projects, I cannot use it because...

question
dependencies

i have following VM: ``` val viewModel: TorrentDetailsViewModel = hiltViewModelScoped( key = hash, defaultArguments = bundleOf(TorrentDetailsViewModel.HASH_KEY to hash) ) ``` After composable is recomposed with new hash, new viewModel is...

bug