Opacity Widget in Flutter
The Opacity widget that makes its child partially transparent. This class colors its child into an intermediate buffer and then merges the child back into the scene partially transparent. For values of opacity other than 0.0 and 1.0, this class is relatively expensive as it needs coloring the child into an intermediate buffer. For the value 0.0, the child is simply not colored at all. For the value 1.0, the child is colored without an intermediate buffer.
Constructors:
Syntax: Opacity({Key key, @required double opacity, bool alwaysIncludeSemantics: false, Widget child})
Properties:
- child: The widgets below this widget in the tree.
- hashCode: The hash code for this object.
- key: Controls how one widget replaces another widget in the tree.
- runtimeType: A representation of the runtime type of the object.
- opacity: The fraction to scale the child’s alpha value.
Example:
The image in the below app has 0.5 opacity.
Dart
import 'package:flutter/material.dart' ; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is //the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'ClipOval' , theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePAGE(), debugShowCheckedModeBanner: false , ); } } class MyHomePAGE extends StatefulWidget { @override _MyHomePAGEState createState() => _MyHomePAGEState(); } class _MyHomePAGEState extends State<MyHomePAGE> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text( 'GeeksforGeeks' ), backgroundColor: Colors.green, ), body: Center( child: Image.network( color: Color.fromRGBO(255, 255, 255, 0.5), colorBlendMode: BlendMode.modulate ) ), backgroundColor: Colors.lightBlue[50], ); } } class MyClip extends CustomClipper<Rect> { Rect getClip(Size size) { return Rect.fromLTWH(0, 0, 100, 100); } bool shouldReclip(oldClipper) { return false ; } } |
Output:
Explanation:
- First initialize the main app as a stateless widget.
- Second design the main widget as you desire.
- Build the Appbar with the scaffold widget.
- Now use the Image.Network widget inside the body of the scaffold widget.
- Finally, set the opacity using colorBlendMode.
Please Login to comment...