Is there a way to Blur behind AlertDialog and Dial...
# compose
s
Is there a way to Blur behind AlertDialog and Dialog in compose ?
e
https://source.android.com/docs/core/display/window-blurs#window-blur-behind
Copy code
<resources>
    <style name="DialogWindowTheme">
        <item name="android:windowBlurBehindEnabled">true</item>
        <item name="android:windowBlurBehindRadius">20px</item>
    </style>
    <style name="FloatingDialogWindowTheme">
        <item name="android:windowBlurBehindEnabled">true</item>
        <item name="android:windowBlurBehindRadius">20px</item>
    </style>
</resources>
add to your
src/main/res/values-v31/styles.xml
and note that it will not work on all devices
s
That works, thanks