fluttericons

What is the icon to indicate 'presets' for Flutter?


What is the name of this icon?

Presets icon

I want an icon to indicate 'user preferences' (i.e. presets).

According to Google, this is a standard presets icon, but I can't find it in Icons or font_awesome_flutter. --Or is there another icon more commonly used?

iconData: Icons.presets ///Not an option

Solution

  • You can use font_awesome_flutter package. The icon name is sliders

        FaIcon(FontAwesomeIcons.sliders),
    

    enter image description here

    Website helps to find icon.