Skip to content

Commit

Permalink
#17 [MOD] 패딩 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin09222 committed Jan 12, 2025
1 parent 2b3d783 commit 97393e4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.offset
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.statusBarsPadding
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
Expand Down Expand Up @@ -80,7 +82,9 @@ fun LoginScreen(
Column(
modifier = Modifier
.fillMaxSize()
.padding(dimensionResource(R.dimen.horizontal_padding)),
.padding(dimensionResource(R.dimen.horizontal_padding))
.statusBarsPadding()
.navigationBarsPadding(),
horizontalAlignment = Alignment.CenterHorizontally
) {
Spacer(modifier = Modifier.weight(1f))
Expand Down

0 comments on commit 97393e4

Please sign in to comment.