Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Material Icon Minus

Tags:

flutter

I cannot find it. Why in material design icon there is no minus icon?

https://api.flutter.dev/flutter/material/Icons-class.html

I can have Add icon https://api.flutter.dev/flutter/widgets/IconData-class.html but why there is no minus icon?

like image 455
stuckedoverflow Avatar asked Feb 28 '19 10:02

stuckedoverflow


People also ask

How do you use the material icon in flutter?

yml file, there is a property that is true by default. It's called uses-material-design and is located directly under the (root) flutter key of the file. You are now able to use the icons by importing the material package like this: import 'package:flutter/material.

What is IconData in flutter?

IconData class Null safetyA description of an icon fulfilled by a font glyph. See Icons for a number of predefined icons available for material design applications.

How do you call a icon on flutter?

Implementation. static const IconData call = IconData(0xe126, fontFamily: 'MaterialIcons'); Flutter.


1 Answers

In order to check the avail icons - you can check - https://material.io/tools/icons/?style=baseline

Now coming to minus icon - it is present with different Name.

Icon( Icons.remove, color: Colors.deepOrange, ),
like image 105
anmol.majhail Avatar answered Oct 12 '22 16:10

anmol.majhail