natario1
06/25/2021, 3:50 PMnavigationBarsPadding() modifier to different composables, but then one of them needs to also have the ime padding. And as docs say, calling navigationBarsPadding().imePadding() is not equal to navigationBarsWithImePadding().
Basically asking for an imePadding which is additive WRT navigationBarsPadding. Any hints on how to compute it?cb
06/25/2021, 3:54 PMderivedWindowInsetsTypeOf() works. You can create your computed insets, and then use rememberInsetsPaddingValues() to apply it as padding.natario1
06/25/2021, 4:16 PM