Skip to content

Commit

Permalink
#21 width, height 개념을 Modifier의 가장 앞에 위치하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
laco-dev committed Jul 7, 2023
1 parent 098c5cb commit 1d024ab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ private fun MainBottomBar(
) {
Row(
modifier = Modifier
.navigationBarsPadding()
.padding(start = 8.dp, end = 8.dp, bottom = 28.dp)
.fillMaxWidth()
.height(56.dp)
.navigationBarsPadding()
.padding(start = 8.dp, end = 8.dp, bottom = 28.dp)
.border(
width = 1.dp,
color = Color(0xFFDCDCDC), // lightgray
Expand Down

0 comments on commit 1d024ab

Please sign in to comment.