Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorKabata committed Oct 17, 2023
1 parent 9d77eec commit f191b32
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ fun SearchScreen(
modifier = Modifier.fillMaxSize()
.padding(vertical = 12.dp, horizontal = 16.dp)
.align(Alignment.Center),
columns = if (windowSize == WindowSize.COMPACT) GridCells.Fixed(2)
else GridCells.Adaptive(minSize = 150.dp),
columns = if (windowSize == WindowSize.COMPACT) {
GridCells.Fixed(2)
} else {
GridCells.Adaptive(minSize = 150.dp)
},
contentPadding = PaddingValues(bottom = 90.dp),
horizontalArrangement = Arrangement.Center
) {
Expand Down

0 comments on commit f191b32

Please sign in to comment.