Icon Widget in Flutter

Properties

 

  • size
  • color
  • semanticLabel
  • textDirection

 

Example 1:

 

Center(

          child: Center(

            child: Icon(

              Icons.bubble_chart,

            ),

          ),

        ),

 

Example 2:

 

Icon(

              Icons.bubble_chart,

              size: 100,

              color: Colors.brown,

            ),

 

Example 3:

 

Center(

            child: Icon(

              Icons.bubble_chart,

              size: 100,

              color: Colors.brown,

              semanticLabel: 'Bubble',

            ),

          ),


Video Link:

Post a Comment (0)
Previous Post Next Post