Answers for "how to add blur effect in a image imageview android"

0

how to add blur effect to photo at 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)),
          ),
        ),
      ),
    );
  }
}
Posted by: Guest on August-24-2021
0

android java how to blur an image

// siyanda zama
<ImageView
	android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:alpha="0.7"
      />
Posted by: Guest on July-08-2020

Code answers related to "how to add blur effect in a image imageview android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language