mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-03 05:22:45 +08:00
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:
@ -101,7 +101,7 @@ class MonthlyRentalWidget extends StatelessWidget {
|
|||||||
|
|
||||||
Set<String> _generateSkus() {
|
Set<String> _generateSkus() {
|
||||||
var list = <String>{};
|
var list = <String>{};
|
||||||
for (var i = 0; i <= 50; i++) {
|
for (var i = 0; i <= 25; i++) {
|
||||||
list.add("sku_monthly_min$i");
|
list.add("sku_monthly_min$i");
|
||||||
}
|
}
|
||||||
return list;
|
return list;
|
||||||
|
Reference in New Issue
Block a user