Skip to content

Commit

Permalink
Increase bottom padding of posts list in home screen
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth committed Apr 30, 2024
1 parent 8cee489 commit 79706e7
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 @@ -81,7 +81,7 @@ import dev.sasikanth.rss.reader.utils.inverse
import kotlinx.coroutines.flow.collectLatest
import kotlinx.coroutines.launch

private val BOTTOM_SHEET_PEEK_HEIGHT = 96.dp
internal val BOTTOM_SHEET_PEEK_HEIGHT = 96.dp
private val BOTTOM_SHEET_CORNER_SIZE = 32.dp

@OptIn(ExperimentalFoundationApi::class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ internal fun PostsList(

LazyColumn(
state = listState,
contentPadding = PaddingValues(top = topContentPadding, bottom = 128.dp)
contentPadding =
PaddingValues(top = topContentPadding, bottom = BOTTOM_SHEET_PEEK_HEIGHT + 120.dp)
) {
item {
FeaturedSection(
Expand Down

0 comments on commit 79706e7

Please sign in to comment.