diff --git a/lib/presentation/pages/main/pages/home/widgets/home_left_panel.dart b/lib/presentation/pages/main/pages/home/widgets/home_left_panel.dart index ddd2a4f..e97bf85 100644 --- a/lib/presentation/pages/main/pages/home/widgets/home_left_panel.dart +++ b/lib/presentation/pages/main/pages/home/widgets/home_left_panel.dart @@ -209,6 +209,18 @@ class _HomeLeftPanelState extends State { ), ), ), + + if (hasReachedMax && products.isNotEmpty) + Container( + padding: EdgeInsets.all(8), + child: Text( + 'Semua produk telah dimuat', + style: AppStyle.sm.copyWith( + color: Colors.grey.shade500, + fontSize: 11, + ), + ), + ), ], ); }