Add bottom inset to feed screen
This commit is contained in:
@@ -93,9 +93,14 @@ class FeedFragment :
|
||||
}
|
||||
|
||||
override fun onWindowInsetsChanged(insets: Insets) {
|
||||
binding.root.updatePadding(
|
||||
left = insets.left,
|
||||
right = insets.right,
|
||||
)
|
||||
binding.recyclerView.updatePadding(
|
||||
left = insets.left + paddingHorizontal,
|
||||
right = insets.right + paddingHorizontal,
|
||||
bottom = insets.bottom,
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user