Skip to content

Commit

Permalink
feat: 가족 이미 있어요 페이지 상하단 패딩
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed Feb 3, 2024
1 parent 31e47a0 commit 33e9186
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.systemBarsPadding
import androidx.compose.material3.MaterialTheme
Expand All @@ -32,7 +33,9 @@ fun AlreadyFamilyExistsView(
Column(
modifier = Modifier
.fillMaxSize()
.systemBarsPadding(),
.systemBarsPadding()
.navigationBarsPadding()
.padding(vertical = 12.dp),
verticalArrangement = Arrangement.SpaceBetween,
horizontalAlignment = Alignment.CenterHorizontally
) {
Expand Down

0 comments on commit 33e9186

Please sign in to comment.