This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Description
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.