You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2024. It is now read-only.
I've tried to use this widget like this:
class _MyClassState extends State<MyClass> { @override Widget build(BuildContext context) { return QuantityInput( minValue: 0, maxValue: 5, value: myvalue, onChanged: (value) => setState(() => myvalue = int.parse(value.replaceAll(',', ''))) ); } }and calling the Myclass from an other class. It works, but the min and max values are not doing anything. I really need the minValue: 0.