File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/main/kotlin/io/github/composegears/valkyrie/ui/screen/settings/tabs Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 66
77- Add ability to import Material Symbols directly inside plugin and convert it into ImageVector
88
9+ ### Fixed
10+
11+ - Incorrect screen transition animation in certain cases
12+
913### Changed
1014
15+ - Simple mode will not generate ` package ` name anymore
1116- Enhance contrast of Snackbar colors for better visibility
1217
1318## [ 0.17.4] ( https://github.com/ComposeGears/Valkyrie/releases/tag/0.17.4 ) - 2025-10-22
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ import androidx.lifecycle.viewmodel.compose.viewModel
3434import com.composegears.tiamat.compose.editNavStack
3535import com.composegears.tiamat.compose.navController
3636import com.composegears.tiamat.compose.navDestination
37+ import com.composegears.tiamat.compose.navigationFadeInOut
3738import com.composegears.tiamat.navigation.NavController
3839import com.composegears.tiamat.navigation.NavDestination.Companion.toNavEntry
3940import io.github.composegears.valkyrie.compose.core.layout.CenterVerticalRow
@@ -90,7 +91,7 @@ val GeneralSettingsScreen by navDestination<Unit> {
9091
9192private fun openIntro (navController : NavController ) {
9293 navController.parent?.run {
93- editNavStack { _ -> listOf (IntroScreen .toNavEntry()) }
94+ editNavStack(transition = navigationFadeInOut()) { _ -> listOf (IntroScreen .toNavEntry()) }
9495 }
9596}
9697
You can’t perform that action at this time.
0 commit comments