Kdon
Kdon

Reputation: 1235

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

Upvotes: 1

Views: 1312

Answers (4)

Andy
Andy

Reputation: 640

CupertinoIcons.slider_horizontal_3

Built into Flutter.

Upvotes: 0

Saad
Saad

Reputation: 613

In font awesome website it is called sliders
In flutter it is called Tune - Icon(Icons.tune)

Upvotes: 2

Md. Yeasin Sheikh
Md. Yeasin Sheikh

Reputation: 63769

You can use font_awesome_flutter package. The icon name is sliders

    FaIcon(FontAwesomeIcons.sliders),

enter image description here

Website helps to find icon.

Upvotes: 2

Abhishek Karad
Abhishek Karad

Reputation: 497

You can download this icon in SVG format and use it by https://pub.dev/packages/flutter_svg

Upvotes: 0

Related Questions