Skip to content

Commit

Permalink
Merge pull request #516 from 07jasjeet/main
Browse files Browse the repository at this point in the history
Fixed profile screen empty state
  • Loading branch information
07jasjeet authored Dec 28, 2024
2 parents eb5ab8b + d547da3 commit c672586
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 c672586

Please sign in to comment.