Skip to content

Commit

Permalink
feat(RecipeDetailScreen): 보여주는 화면 크기를 네비게이션 바 전까지로 한다
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongHoonC committed Jul 21, 2024
1 parent 84c9182 commit d310ba8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,10 @@ private fun RecipeDetailScreen(
}

Box(
modifier = modifier.fillMaxSize()
modifier =
modifier
.windowInsetsPadding(WindowInsets.navigationBars)
.fillMaxSize(),
) {
RecipeImage(
imageUrl = likableRecipe.recipe.image,
Expand Down

0 comments on commit d310ba8

Please sign in to comment.