Icon

Icon

Different packages of icons are available in admin panel by flutter code.

 
Panel icons
Font awesome flutter icons
Flutter icons



Panel icons:

these are Panel icons located in:
es_flutter_component>assets/svgs
and is used as:
EsSvgIcon(
"packages/es_flutter_component/assets/svgs/ticksquare.svg",
  color: _color,
  size: _size,),

where
Color _color= StructureBuilder.styles!.primaryColor;
double _size=StructureBuilder.dims!.h2IconSize;





Font awesome flutter icons:

Theey are font_awesome_flutter icons that the font_awesome_flutter package
is added in pubspec.yaml dependencies
and is used as:

FaIcon(FontAwesomeIcons.arrowDown,color: _color,),





Flutter icons:

Theey are flutter icons that
and is used as:
Icon(Icons.access_time,color: _color,),