Skip to content

Commit cf5d6b1

Browse files
committed
fix: correct screen transition animation
1 parent b80ea3f commit cf5d6b1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

tools/idea-plugin/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@
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

tools/idea-plugin/src/main/kotlin/io/github/composegears/valkyrie/ui/screen/settings/tabs/GeneralSettingsScreen.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import androidx.lifecycle.viewmodel.compose.viewModel
3434
import com.composegears.tiamat.compose.editNavStack
3535
import com.composegears.tiamat.compose.navController
3636
import com.composegears.tiamat.compose.navDestination
37+
import com.composegears.tiamat.compose.navigationFadeInOut
3738
import com.composegears.tiamat.navigation.NavController
3839
import com.composegears.tiamat.navigation.NavDestination.Companion.toNavEntry
3940
import io.github.composegears.valkyrie.compose.core.layout.CenterVerticalRow
@@ -90,7 +91,7 @@ val GeneralSettingsScreen by navDestination<Unit> {
9091

9192
private fun openIntro(navController: NavController) {
9293
navController.parent?.run {
93-
editNavStack { _ -> listOf(IntroScreen.toNavEntry()) }
94+
editNavStack(transition = navigationFadeInOut()) { _ -> listOf(IntroScreen.toNavEntry()) }
9495
}
9596
}
9697

0 commit comments

Comments
 (0)