skip to Main Content

Android Studio – Android 14 – bottomsheet dialog transparent background

I have the following attributes for bottom sheet dialog: <style name="DialogStyle" parent="Theme.Design.Light.BottomSheetDialog"> <item name="android:windowIsFloating">false</item> <item name="android:statusBarColor">@android:color/transparent</item> <item name="android:windowSoftInputMode">adjustResize</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="bottomSheetStyle">@style/RoundedBottomSheet</item> <style name="RoundedBottomSheet" parent="Widget.Design.BottomSheet.Modal"> <item name="android:background">@android:color/transparent</item> <item name="android:windowEnterAnimation">@anim/popup_window_enter_animation</item> <item name="android:windowExitAnimation">@anim/popup_window_exit_animation</item> </style> In Versions under android 14 I see the…

VIEW QUESTION

Flutter text size

I want to have button that will resize font size across my entire aplication. I want to change size of every text from 100% of size that I already have to 200%. Android accessibility already does that. Android have "fint…

VIEW QUESTION
Back To Top
Search