Dima Saviuk

Results 93 comments of Dima Saviuk

Not sure if I understand what problem you're having exactly. Why can't you wrap it into `AndroidView` yourself?

If your composable is written within the Activity, just get a reference to it and do ```Kotlin val decorView = activity.window.decorView val rootView = decorView.findViewById(android.R.id.content) ``` If you don't have...

Then I guess the BlurView is not compatible with Composable hierarchies. I'm slightly interested in why it happens, so I might check it out later, but most likely this won't...

@SecretKeeper I've opened an issue here - https://issuetracker.google.com/issues/232625913 I don't think there's anything reasonable I can do to fix this crash on my side. The Compose's behavior doesn't look right...

> I tried moving the setupWith into update block and it works Unfortunately, it's probably some (un)lucky quirk of your particular setup, because there's a fundamental problem preventing it from...

Version 2.0.2 _should_ fix this problem, but I'm not sure it's going to be working in every scenario. But you can try and let me know how it went

Thanks for the suggestion. Pretty much the only reasonable API to migrate to is OpenGL (or Vulkan with a stretch), and that's quite a lot of work. The `Toolkit`'s blur...

Version 2.0.0 now has the `RenderEffectBlur` algorithm for API 31, which leverages the `RenderEffect`. It's not yet well tested, and the performance is hard to measure, since most of the...

Do you somehow reuse the `RenderEffectBlur` `BlurAlgorithm` by chance?

Apparently, there's some weird bug with `android:windowBackground` as an image (`BitmapDrawable`). I'll see what I can do about it, but be aware that even regardless of this bug, your `Expected`...