AhmedLSayed9 / dropdown_button2

Flutter's core Dropdown Button widget with steady dropdown menu and many other features.
https://pub.dev/packages/dropdown_button2
MIT License
271 stars 124 forks source link

Update icon property of 'IconStyleData'. #308

Open Dawood-Shahid opened 3 months ago

Dawood-Shahid commented 3 months ago

Change the icon prop property of IconStyleData to 'Widget' instead of 'Icon', so that it can accept svg and png as well.

/// Creates an IconStyleData.
  const IconStyleData({
    this.icon = Widget,
    // this.icon = const Icon(Icons.arrow_drop_down),
    this.iconDisabledColor,
    this.iconEnabledColor,
    this.iconSize = 24,
    this.openMenuIcon,
  });