Reduce the number of monthly prices visible

Going up to 50$/month is just way too much, since then the slider looks
quite ugly as it is barely ever gets full.
This commit is contained in:
Vishesh Handa
2020-08-19 17:25:01 +02:00
parent 732c547cef
commit c246ae4eca

View File

@ -101,7 +101,7 @@ class MonthlyRentalWidget extends StatelessWidget {
Set<String> _generateSkus() {
var list = <String>{};
for (var i = 0; i <= 50; i++) {
for (var i = 0; i <= 25; i++) {
list.add("sku_monthly_min$i");
}
return list;