Skip to content

Commit

Permalink
Fix empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
07jasjeet committed Dec 28, 2024
1 parent 5a9f285 commit d547da3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,10 @@ fun BaseProfileScreen(
}

HorizontalPager(
modifier = Modifier.fillMaxSize(),
state = pagerState,
beyondViewportPageCount = 1,
verticalAlignment = Alignment.Top,
key = { ProfileScreenTab.entries[it] }
) { index ->
when (index) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,7 @@ fun TasteScreen(
false -> uiState.tasteTabUIState.pins?.pinnedRecordings ?: listOf()
}
Box(
modifier = Modifier
.padding(start = 16.dp, end = 16.dp)
modifier = Modifier.padding(16.dp)
) {
Column {
Text(
Expand Down

0 comments on commit d547da3

Please sign in to comment.