File tree 3 files changed +3
-7
lines changed
app/src/main/java/com/cornellappdev/scoop/ui
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class MainActivity : ComponentActivity() {
18
18
setContent {
19
19
ProvideWindowInsets {
20
20
ScoopTheme {
21
- OnboardingHolderView ()
21
+ MainScreen ()
22
22
}
23
23
}
24
24
}
Original file line number Diff line number Diff line change @@ -47,9 +47,7 @@ fun NavHeader(
47
47
Button (
48
48
onClick = {
49
49
scope.launch {
50
- withContext(Dispatchers .IO ){
51
- backFunction()
52
- }
50
+ backFunction()
53
51
}
54
52
},
55
53
colors = ButtonDefaults .buttonColors(backgroundColor = Color .White ),
Original file line number Diff line number Diff line change @@ -43,9 +43,7 @@ fun RightArrow(
43
43
onClick = {
44
44
Log .d(" PAGERSTATE" , " button Clicked" )
45
45
scope.launch {
46
- withContext(Dispatchers .IO ) {
47
- nextFunction()
48
- }
46
+ nextFunction()
49
47
}
50
48
}
51
49
) {
You can’t perform that action at this time.
0 commit comments