blur image in flutter

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Container(
        decoration: new BoxDecoration(
          image: new DecorationImage(
            image: new ExactAssetImage('assets/dog.png'),
            fit: BoxFit.cover,
          ),
        ),
        child: new BackdropFilter(
          filter: new ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0),
          child: new Container(
            decoration: new BoxDecoration(color: Colors.white.withOpacity(0.0)),
          ),
        ),
      ),
    );
  }
}

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
how to make image blur in flutter how to blurr image in flutter blur background in image flutter blur background in flutter how to blur image flutter how to blur an image flutter flutter + container blur blur image during upload flutter add background image flutter with blur how to blur a widget in flutter how to blur flutter background flutter blur image area blurry background in flutter flutter iamge blur make blur un fluutter how to make background blur in flutter why is my flutter png blurry image asset flutter blur image asset flutter make image blur image asset flutter with blur add blur to image flutter how to blur container background image in flutter BlurFilter flutter how to apply object blur in flutter blur view flutter flutter image showing blur in website blur effect on imagein flutter blur effect in flutter container add blur flutter imagefilter.blur flutter blur image on tap in flutter how to make image asset blur in flutter camera blur flutter how to make card blur in flutter make flutter card blur make background blur flutter blur effect card flutter blur effect container flutter flutter blur content flutter card blur blur image background flutter blur image in decoration flutter add blur effect to image in flutter flutter make image blur how to blur the asset image in flutter blur effect on card background flutter card background blur in flutter how to give blur effect in flutter blur flutter Clip flutter how to blur a image how to blur widget in flutter blur background flutter Image Filter blur Flutter make container blur in flutter how to blur container in flutter how to remove blur from photo in flutter blur a color in flutter blur image container flutter how to blur a widget flutter blur background container flutter assetimage blur flutter how i can blur in flutter blur on flutter how to blur image in fluttere flutter how to apply blur image behind widgets how to make image blurr in flutter flutter blurred image how to blur assets image in container flutter blur button flutter flutter blur effect blur effect on flutter opacity blur in flutter flutter how do I blur a widget blur to container flutter flutter blur network image flutter blur out an image blur an icon flutter flutter blur color flutter background blur blur container flutter how to blur image in flutter flutter blur flutter window blur background blurred image flutter image blur flutter flutter image blur how to blur background flutter flutter images are blurry flutter network image is blury flutter network image is blur flutter image filter blur blur image flutter how to add blur filter on asset.image flutter show image with surrounding blur flutter flutter blur container blur background image flutter blur widget flutter how to blur images in flutter blur decoration image flutter how to blur a container in flutter give image a blurry background flutter blur screen flutter how to blur background in image in flutter flutter blur background image blurry images flutter blur effect flutter how to blur background in flutter flutter blurry forground blur flutter flutter blur image flutter blur background blur image in flutter
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source