Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/src/main/java/com/threegap/bitnagil/MainNavHost.kt
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,20 @@ fun MainNavHost(
navigator.navController.navigate(Route.OnBoarding(isNew = false))
},
navigateToNotice = {
navigator.navController.navigate(
Route.WebView(
title = "공지 사항",
url = "https://complex-wombat-99f.notion.site/23ff4587491d80efa0a5e4baece6017b?source=copy_link",
),
)
},
navigateToQnA = {
navigator.navController.navigate(
Route.WebView(
title = "자주 묻는 질문",
url = "https://complex-wombat-99f.notion.site/23ff4587491d80659ae3ea392afbc05e?source=copy_link",
),
)
},
navigateToRegisterRoutine = { routineId ->
navigator.navController.navigate(Route.WriteRoutine(routineId = routineId))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fun HomeNavHost(
FloatingActionItem(
icon = R.drawable.ic_report,
text = "제보하기",
onClick = {},
onClick = { GlobalBitnagilToast.showWarning("제보하기 기능은 추후 제공될 예정입니다.") },
),
FloatingActionItem(
icon = R.drawable.ic_add_routine,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ private fun EmotionRecommendRoutineScreen(
Column(
modifier = Modifier
.fillMaxSize()
.background(color = BitnagilTheme.colors.coolGray99),
.background(color = BitnagilTheme.colors.coolGray99)
.statusBarsPadding(),
) {
BitnagilProgressTopBar(
onBackClick = onClickPreviousButton,
Expand Down