From 199b9682bc0ad0684368748a34a6a46cfff9e4fb Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 12 Aug 2020 18:50:28 +0200 Subject: [PATCH] PurchaseSlider: Get the largest amount as well --- lib/widgets/purchase_widget.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/widgets/purchase_widget.dart b/lib/widgets/purchase_widget.dart index f9fc0964..7d109812 100644 --- a/lib/widgets/purchase_widget.dart +++ b/lib/widgets/purchase_widget.dart @@ -47,10 +47,9 @@ class PurchaseButton extends StatelessWidget { Set _generateSkus() { var list = {'sku_monthly_min'}; - for (var i = 0; i < 50; i++) { + for (var i = 0; i <= 50; i++) { list.add("sku_monthly_min$i"); } - print(list); return list; }