kroegerama / bottomsheet-imagepicker

Modern image picker for Android
Apache License 2.0
326 stars 48 forks source link

Add navigation bar color option #1

Closed paolovalerdi closed 4 years ago

paolovalerdi commented 5 years ago

Enables theming of the navigation bar color. In order to be able to theme the navigation bar color one must extend from the material bottom sheet style like so

    <style name="AppTheme.BottomSheetDialogTheme" parent="ThemeOverlay.MaterialComponents.Light.BottomSheetDialog">
        <item name="android:navigationBarColor" tools:targetApi="lollipop">@android:color/transparent</item>
        <item name="android:windowIsFloating">false</item>
        <item name="android:statusBarColor" tools:targetApi="lollipop">@android:color/transparent</item>
    </style>