Skip to content

Commit fbcb404

Browse files
committed
chore(currencycreator): make all steps non dismissable via gestures
instead of battling nested scrolling, just lock the sheets for now Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 2dab06c commit fbcb404

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/tokens/CurrencyCreatorStep.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
package com.flipcash.app.core.tokens
22

33
import android.os.Parcelable
4+
import com.getcode.navigation.NonDismissableRoute
5+
import com.getcode.navigation.NonDraggableRoute
46
import com.getcode.navigation.flow.FlowStep
57
import com.getcode.opencode.model.ui.TokenBillCustomizations
68
import kotlinx.parcelize.Parcelize
79
import kotlinx.serialization.Serializable
810

911
@Serializable
10-
sealed interface CurrencyCreatorStep: FlowStep, Parcelable {
12+
sealed interface CurrencyCreatorStep: FlowStep, Parcelable, NonDismissableRoute, NonDraggableRoute {
1113

1214
@Parcelize
1315
@Serializable

0 commit comments

Comments
 (0)