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

Keyboard Dissmissal in Flutter

Keyboard is not dismissing correctly in fl;utter using keyboardDismissBehavior: ScrollViewKeyboardDismissBehavior.onDrag, property inside a singleChildScrollview , when drawer is opened. need to dismiss the keyboard when drawer is opened https://github.com/flutter/flutter/assets/90414446/911db935-9a95-466d-9d51-26312ad856e3

VIEW QUESTION
Back To Top
Search