I\'m using really naive code to show a bottom sheet dialog fragment:
class LogoutBottomSheetFragment : BottomSheetDialogFragment() {
override fun onCrea
I know there is many solutions here already but all of them seems too much to me, so I found this very simple solution here, credit goes to Arthur Nagy:
just override the getTheme method in the BottomSheetDialogFragment:
override fun getTheme(): Int = R.style.Theme_NoWiredStrapInNavigationBar
and in styles.xml:
You can also add support for night mode by changing the color @color/bottom_sheet_bg in the values-night assets folder