@@ -19,7 +19,6 @@ import com.flipcash.app.menu.MenuScreen
19
19
import com.flipcash.app.myaccount.MyAccountScreen
20
20
import com.flipcash.app.permissions.CameraPermissionScreen
21
21
import com.flipcash.app.permissions.NotificationPermissionScreen
22
- import com.flipcash.app.pools.PoolBettingScreen
23
22
import com.flipcash.app.pools.create.PoolCustomBidEntryScreen
24
23
import com.flipcash.app.pools.PoolCreateFlow
25
24
import com.flipcash.app.pools.PoolListScreen
@@ -33,7 +32,7 @@ import com.flipcash.app.withdrawal.WithdrawalConfirmationScreen
33
32
import com.flipcash.app.withdrawal.WithdrawalDestinationScreen
34
33
import com.flipcash.app.withdrawal.WithdrawalEntryScreen
35
34
import com.flipcash.app.withdrawal.WithdrawalFlow
36
-
35
+ import com.getcode.navigation.modal.ModalScreen
37
36
38
37
@Composable
39
38
internal fun AppScreenContent (content : @Composable () -> Unit ) {
@@ -100,7 +99,8 @@ internal fun AppScreenContent(content: @Composable () -> Unit) {
100
99
}
101
100
102
101
register<NavScreenProvider .HomeScreen .Pools .ChoiceSelection > {
103
- PoolBettingScreen (it.poolId, it.postCreate)
102
+ // PoolBettingScreen(it.poolId, it.postCreate)
103
+ DummyModal ()
104
104
}
105
105
106
106
register<NavScreenProvider .HomeScreen .CurrencySelection > {
@@ -160,4 +160,18 @@ internal fun AppScreenContent(content: @Composable () -> Unit) {
160
160
PreloadBalance ()
161
161
162
162
content()
163
+ }
164
+
165
+ private class Dummy : Screen {
166
+ @Composable
167
+ override fun Content () {
168
+
169
+ }
170
+ }
171
+
172
+ private class DummyModal : ModalScreen {
173
+ @Composable
174
+ override fun ModalContent () {
175
+
176
+ }
163
177
}
0 commit comments