Bottom Sheet Android Navigation Color

[Solved] Bottom Sheet Android Navigation Color | Swift - Code Explorer | yomemimo.com
Question : bottom sheet android navigation color

Answered by : mahdi-behoftadeh

<style name="BottomSheet" parent="@style/Widget.Design.BottomSheet.Modal"> <item name="android:background">@drawable/rounded_dialog</item>
</style>
<style name="BaseBottomSheetDialog" parent="@style/Theme.Design.Light.BottomSheetDialog"> <item name="android:windowIsFloating">false</item> <item name="bottomSheetStyle">@style/BottomSheet</item> <item name="android:statusBarColor">@android:color/transparent</item> <item name="android:navigationBarColor">@color/colorPrimary</item>
</style>

Source : https://stackoverflow.com/questions/40134260/why-does-bottomsheetdialog-turn-status-bar-black | Last Update : Thu, 04 Aug 22

Answers related to bottom sheet android navigation color

Code Explorer Popular Question For Swift