File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
app/src/main/java/com/threegap/bitnagil/navigation/home Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import com.threegap.bitnagil.designsystem.R
2525import com.threegap.bitnagil.designsystem.component.atom.BitnagilFloatingActionMenu
2626import com.threegap.bitnagil.designsystem.component.atom.FloatingActionItem
2727import com.threegap.bitnagil.designsystem.modifier.clickableWithoutRipple
28+ import com.threegap.bitnagil.presentation.common.toast.GlobalBitnagilToast
2829import com.threegap.bitnagil.presentation.home.HomeScreenContainer
2930import com.threegap.bitnagil.presentation.mypage.MyPageScreenContainer
3031import com.threegap.bitnagil.presentation.recommendroutine.RecommendRoutineScreenContainer
@@ -114,8 +115,7 @@ fun HomeNavHost(
114115 onToggle = { expanded -> showFloatingOverlay = expanded },
115116 modifier = Modifier
116117 .align(Alignment .BottomEnd )
117- .padding(16 .dp)
118- .padding(bottom = 80 .dp),
118+ .padding(end = 16 .dp, bottom = 80 .dp),
119119 )
120120 }
121121 }
@@ -131,6 +131,7 @@ fun DoubleBackButtonPressedHandler() {
131131 (context as ? Activity )?.finish()
132132 } else {
133133 backPressedTimeMillis = System .currentTimeMillis()
134+ GlobalBitnagilToast .showWarning(" 버튼을 한 번 더 누르면 종료됩니다." )
134135 }
135136 }
136137}
You can’t perform that action at this time.
0 commit comments