Ahmadre / FlutterIconPicker

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

Spacing properties do not affect #41

Closed shababhsiddique closed 1 year ago

shababhsiddique commented 2 years ago

Spacing do not affect Following code is used to create the picker, however the main axis and cross axis spacing properties do not affect.

IconData? icon = await FlutterIconPicker.showIconPicker( context, adaptiveDialog: false, iconSize: 25, crossAxisSpacing: 30, mainAxisSpacing: 30, title: const Text("Select an icon") , barrierDismissible: false, constraints: BoxConstraints( maxHeight: 700, maxWidth: 340, minWidth: 320, ), iconPackModes: [IconPack.fontAwesomeIcons], ); if(icon!= null) { _categoryFormController.setIcon(icon); }

image
Ahmadre commented 1 year ago

Thank you for your hint.

Fixed in Version 3.2.1.