Reputation: 1235
What is the name of this 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
Upvotes: 1
Views: 1312
Reputation: 613
In font awesome website it is called sliders
In flutter it is called Tune
- Icon(Icons.tune)
Upvotes: 2
Reputation: 63769
You can use font_awesome_flutter package. The icon name is sliders
FaIcon(FontAwesomeIcons.sliders),
Website helps to find icon.
Upvotes: 2
Reputation: 497
You can download this icon in SVG format and use it by https://pub.dev/packages/flutter_svg
Upvotes: 0