Ahmadre / FlutterIconPicker

An adaptive comprehensive IconPicker for Flutter
MIT License
112 stars 76 forks source link

Is there a way to only show baseline Icon theme? #24

Closed zambetpentru closed 2 years ago

zambetpentru commented 3 years ago

Hi,

I just started to implement your package and it's working very well but has duplicated icons (i.e. Outlined, Round, Sharp, etc.). Is there a way to only show the baseline ones? Without say editing the Packs\Material.dart file?

Ahmadre commented 3 years ago

Hi,

I just started to implement your package and it's working very well but has duplicated icons (i.e. Outlined, Round, Sharp, etc.). Is there a way to only show the baseline ones? Without say editing the Packs\Material.dart file?

Yes: Copy the icons you want to use for your app out of the Material Pack and add your customIconPack in the same map like you see in the Material Pack.

Ahmadre commented 3 years ago

You have to set the IconPack: iconPackMode: IconPack.custom

and provide your Map<String, dynamic> customIconPack.

zambetpentru commented 3 years ago

Okay thank you!