Open In App

Icon Class in Flutter

Icon class in Flutter is used to show specific icons in our app. Instead of creating an image for our icon, we can simply use the Icon class for inserting an icon in our app. For using this class you must ensure that you have set uses-material-design: true in the pubsec.yml file of your object.

Syntax:
Icon(
      key key,
      size,
      color,
      semanticLabel,
      textDirection
)

Properties:

Note: The semanticLabel are not visible in the UI.



A few of them are depicted below:



To view, the complete list of Icons click here.

Let’s see some of those icons in action with simple flutter apps.

Example: 

Here we will design an app that shows various icons on different tabs. Here we will have 5 tabs with 5 icons each and we will alter its properties to view the UI changes. The property changes are as below:

  1. music_note Icon:
    properties:
    color: default, size: 100, semanticLabel: None, textdirection: default
  2. music_video Icon:
    properties:
    color: default, size: 100, semanticLabel: None, textdirection: default
  3. camera_alt Icon:
    properties:
    color: default, size: 100, semanticLabel: 'Camera', textdirection: default
  4. grade Icon:
    properties:
    color: red, size: 300, semanticLabel: 'Star', textdirection: default
  5. email Icon:
    properties:
    color: default, size: default, semanticLabel: None', textdirection: default




import 'package:flutter/material.dart';
  
void main() {
  runApp(TabBarDemo());
}
  
class TabBarDemo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: DefaultTabController(
        length: 5,
        child: Scaffold(
          appBar: AppBar(
            bottom: TabBar(
              tabs: [
                Tab(icon: Icon(Icons.music_note)),
                Tab(icon: Icon(Icons.music_video)),
                Tab(icon: Icon(Icons.camera_alt)),
                Tab(icon: Icon(Icons.grade)),
                Tab(icon: Icon(Icons.email)),
              ],
            ),
            title: Text('GeeksForGeeks'),
            backgroundColor: Colors.green,
          ),
          body: TabBarView(
            children: [
              Icon(Icons.music_note,
                  size: 100),
              Icon(Icons.music_video,
                color: Colors.blue,
                size: 100),
              Icon(Icons.camera_alt,
                semanticLabel: 'Camera',
                size: 100),
              Icon(Icons.grade,
                color: Colors.red,
                size: 300,
                semanticLabel: 'Star',),
              Icon(Icons.email),
            ],
          ),
        ),
      ),
    );
  }
}

Output:


Article Tags :