Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use outline icon in flutter?

Tags:

flutter

I want to use outline icon from material design. How can I do this?

Icon(
  Icons.dashboard,
  color: Colors.blue,
  size: 24,
),

Example I want to add 'theme: Themes.outline' in the above code. Is it possible to do this?

f

like image 433
Kongsun Avatar asked Jun 15 '19 06:06

Kongsun


2 Answers

You can find icon resources here: https://fonts.google.com/icons?selected=Material+Icons

Use the right drawer to get Flutter id.

like image 58
hungtran273 Avatar answered Sep 29 '22 23:09

hungtran273


I was doing some tests with the Flutter master channel and it seems there are outline material icons in this channel. However, I haven't found any thread or discussion about this being added in the future to the stable channel

Edit: These icons are now available in stable channel

If you have an icon like this:

Icon(Icons.science)

it would be:

Icon(Icons.science_outlined)

I tested some and they seem to work fine

Outlined icons

like image 25
Luis Alonso Avatar answered Sep 30 '22 01:09

Luis Alonso