0

Anyone else have issues with bottom sheet behavior in their apps? Specifically concerning peek height when using phones which have gesture navigation enabled?

bottom sheet with gesture nav off

bottom sheet with gesture nav on

Nathany Attipoe
  • 203
  • 3
  • 6

1 Answers1

2

I had the same problem in my app, I solved it with custom insets consuming( Consuming insets manually)

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
...
        ViewCompat.setOnApplyWindowInsetsListener(binding.rootView) { _, insets ->
        val systemGestureInsets = insets.systemGestureInsets
        WindowInsetsCompat.Builder()
            .setSystemWindowInsets(insets.systemWindowInsets)
            .setSystemGestureInsets(systemGestureInsets).build()
    }
...
}
Dharman
  • 30,962
  • 25
  • 85
  • 135
KamikX
  • 36
  • 2