olexale / arkit_flutter_plugin

ARKit Flutter Plugin
MIT License
796 stars 225 forks source link

BackdropFilter overlay not applied #179

Open vasilich6107 opened 2 years ago

vasilich6107 commented 2 years ago

Hi Thanks for your work

We need to place a BackdropFilter with Image.blur over the AR view

The backdrop filter is not being applied. Here is some sample code to help with reproduction.

Stack(
        children: [
        ARView(),
          ClipRect(
            child: BackdropFilter(
              filter: ImageFilter.blur(sigmaX: 50, sigmaY: 50),
              child:
                  Container(width: 100, height: 100, child: Text('test')),
            ),
          ),
        ],
      )
vasilich6107 commented 2 years ago

@olexale any feedback?