Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blurring doesn't work if the html editor is on the screen #543

Open
BunnyBuddy opened this issue Oct 11, 2024 · 0 comments
Open

Blurring doesn't work if the html editor is on the screen #543

BunnyBuddy opened this issue Oct 11, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@BunnyBuddy
Copy link

Describe the bug
If I want to show the user some kind of popup on screen and the html editor is in the background, the blurring doesn't obscure the html editor. It's a weird behaviour that I never really understood. For further clarification, I've attached an image.

1728646015685

Is there a way to make it work?

The code I am using to show the popup looks like,

showDialog(
        context: context,
        barrierColor: const Color.fromRGBO(0, 0, 0, 0.2),
        barrierDismissible: true,
        builder: (BuildContext context) {
          return BackdropFilter(
            filter: ImageFilter.blur(sigmaX: 3.5.w, sigmaY: 3.5.h),
            child: Container(
              width: Get.width,
              height: Get.height,
              padding: MediaQuery.of(context).viewInsets,
              child: Column(
 ...
[✓] Flutter (Channel stable, 3.16.9, on macOS 14.5 darwin-arm64)
    • Flutter version 3.16.9 on channel stable at /Users/fvm/versions/3.16.9
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 41456452f2 (9 months ago), 2024-01-25 10:06:23 -0800
    • Engine revision f40e976bed
    • Dart version 3.2.6
    • DevTools version 2.28.5

[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
    • Android SDK at /Users/Library/Android/sdk
    • Platform android-34-ext11, build-tools 34.0.0
    • Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.15+0-b2043.56)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 15.3)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Build 15E204a
    • CocoaPods version 1.15.2

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 2022.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.15+0-b2043.56-8887301)

[✓] Connected device (4 available)
    • iPhone (mobile) • 00008020           • ios            • iOS 17.6.1 21G93
    • iPhone 15 Pro Max (mobile)      • EEC16AC1-CAD4-AFE8 • ios            
    • com.apple.CoreSimulator.SimRuntime.iOS-17-4 (simulator)
    • macOS (desktop)                 • macos                                • darwin-arm64   • macOS 14.5 23F79 darwin-arm64
    • Chrome (web)                    • chrome                               • web-javascript • Google Chrome 129.0.6668.100

[✓] Network resources
    • All expected network resources are available.

• No issues found!

@BunnyBuddy BunnyBuddy added the bug Something isn't working label Oct 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants