Hi folks, Is there really no other override for th...
# compose-android
a
Hi folks, Is there really no other override for the AlertDialog background than
Copy code
<style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
        <item name="android:background">#FFFFFF</item>
? My problem is I'm integrating Compose into an existing application and it gets this unseemly white background behind its rounded corners. The only way I've found online to fix this is to remove the above item from the style. but this immediately breaks every existing dialog in the application, which i cannot afford to address on an individual basis
a
There probably is, but it's not well documented so not worth it. Unstyled dialog exists so that you can style your compose dialogs as you want without spending times on that
e
which AlertDialog, M2 or M3?
a
M3