File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
app/src/main/java/com/threegap/bitnagil
presentation/src/main/java/com/threegap/bitnagil/presentation/emotion Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,20 @@ fun MainNavHost(
101
101
navigator.navController.navigate(Route .OnBoarding (isNew = false ))
102
102
},
103
103
navigateToNotice = {
104
+ navigator.navController.navigate(
105
+ Route .WebView (
106
+ title = " 공지 사항" ,
107
+ url = " https://complex-wombat-99f.notion.site/23ff4587491d80efa0a5e4baece6017b?source=copy_link" ,
108
+ ),
109
+ )
104
110
},
105
111
navigateToQnA = {
112
+ navigator.navController.navigate(
113
+ Route .WebView (
114
+ title = " 자주 묻는 질문" ,
115
+ url = " https://complex-wombat-99f.notion.site/23ff4587491d80659ae3ea392afbc05e?source=copy_link" ,
116
+ ),
117
+ )
106
118
},
107
119
navigateToRegisterRoutine = { routineId ->
108
120
navigator.navController.navigate(Route .WriteRoutine (routineId = routineId))
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ fun HomeNavHost(
103
103
FloatingActionItem (
104
104
icon = R .drawable.ic_report,
105
105
text = " 제보하기" ,
106
- onClick = {},
106
+ onClick = { GlobalBitnagilToast .showWarning( " 제보하기 기능은 추후 제공될 예정입니다. " ) },
107
107
),
108
108
FloatingActionItem (
109
109
icon = R .drawable.ic_add_routine,
Original file line number Diff line number Diff line change @@ -148,7 +148,8 @@ private fun EmotionRecommendRoutineScreen(
148
148
Column (
149
149
modifier = Modifier
150
150
.fillMaxSize()
151
- .background(color = BitnagilTheme .colors.coolGray99),
151
+ .background(color = BitnagilTheme .colors.coolGray99)
152
+ .statusBarsPadding(),
152
153
) {
153
154
BitnagilProgressTopBar (
154
155
onBackClick = onClickPreviousButton,
You can’t perform that action at this time.
0 commit comments