From 88c3cebd3158269e40d7088e217eab03fb75ac16 Mon Sep 17 00:00:00 2001 From: efrilm Date: Fri, 29 Aug 2025 20:50:03 +0700 Subject: [PATCH] feat: update --- lib/presentation/pages/main/pages/home/home_page.dart | 2 +- .../pages/main/pages/home/widgets/lottery_card.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/pages/main/pages/home/home_page.dart b/lib/presentation/pages/main/pages/home/home_page.dart index aa7eb2a..7f8db99 100644 --- a/lib/presentation/pages/main/pages/home/home_page.dart +++ b/lib/presentation/pages/main/pages/home/home_page.dart @@ -40,7 +40,7 @@ class _HomePageState extends State { _buildHeaderSection(), const SizedBox(height: 70), HomeFeatureSection(), - HomeLotteryBanner(), + HomeLotteryBanner(onTap: () => context.router.push(DrawRoute())), HomePopularMerchantSection(), ], ), diff --git a/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart b/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart index f77d1c6..e516087 100644 --- a/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart +++ b/lib/presentation/pages/main/pages/home/widgets/lottery_card.dart @@ -8,7 +8,7 @@ class HomeLotteryBanner extends StatefulWidget { this.title = "🎰 UNDIAN BERHADIAH", this.subtitle = "Kumpulkan voucher untuk menang hadiah menarik!", this.showAnimation = true, - this.actionText = "MAIN SEKARANG", + this.actionText = "IKUTI SEKARANG", }); final VoidCallback? onTap;