reduced max month practice rounds to something more realistic (500)

This commit is contained in:
BroodjeAap 2020-10-19 17:32:49 +02:00
parent 8bb558e3f4
commit 3e632627fe

View file

@ -29,7 +29,7 @@ class _MonthPracticeSetupState extends State<MonthPracticeSetupPage> {
new NumberPicker.integer(
initialValue: _count,
minValue: 1,
maxValue: 1000000,
maxValue: 500,
onChanged: (newNumber) =>
setState(() => _count = newNumber),
),