DavideBelsole / great_list_view

pub.dev library for flutter
MIT License
39 stars 21 forks source link

Morph Comparitor Parameters are of Type Widget #33

Open willroyMyles opened 1 year ago

willroyMyles commented 1 year ago

the type def for morph comparitor is as follows typedef MorphComparator = bool Function(Widget a, Widget b); this leave me unable to compare if the data the widget represet has chnaged.

would changing it to typedef MorphComparator = bool Function(dynamic a, dynamic b); work? that way i can type cast it to anything i need.