We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d528654 commit 6ccc500Copy full SHA for 6ccc500
1 file changed
apps/flipcash/app2/src/main/kotlin/com/flipcash/app/internal/ui/App.kt
@@ -158,18 +158,6 @@ internal fun App(
158
) {
159
160
when (navigator.lastEvent) {
161
- StackEvent.Push,
162
- StackEvent.Pop -> {
163
- when (navigator.lastItemOrNull) {
164
- ScreenRegistry.get(AppRoute.Onboarding.SeedInput) -> {
165
- CrossfadeTransition(navigator = navigator)
166
- }
167
-
168
- else -> SlideTransition(navigator = navigator)
169
170
171
172
- StackEvent.Idle -> CurrentScreen()
173
StackEvent.Replace -> {
174
when (navigator.lastItemOrNull) {
175
ScreenRegistry.get(AppRoute.Onboarding.SeedInput),
@@ -180,6 +168,7 @@ internal fun App(
180
else -> CurrentScreen()
181
}
182
+ else -> SlideTransition(navigator = navigator)
183
184
185
0 commit comments