I've a simple problem the setter does not get fired.
here's my usage:
DropDownField(
value: selectedCategory,
strict: true,
icon: Icon(Icons.category),
items: categories,
setter: (dynamic newValue) {
setState(() {
selectedCategory = newValue;
});
}
),
I've a simple problem the setter does not get fired.
here's my usage:
DropDownField(
value: selectedCategory,
strict: true,
icon: Icon(Icons.category),
items: categories,
setter: (dynamic newValue) {
setState(() {
selectedCategory = newValue;
});
}
),