diff --git a/lib/presentation/pages/home/home_page.dart b/lib/presentation/pages/home/home_page.dart index ea60d5c..6bd05f5 100644 --- a/lib/presentation/pages/home/home_page.dart +++ b/lib/presentation/pages/home/home_page.dart @@ -13,7 +13,6 @@ import 'widgets/feature.dart'; import 'widgets/header.dart'; import 'widgets/promo_banner.dart'; import 'widgets/stats.dart'; -import 'widgets/top_product.dart'; @RoutePage() class HomePage extends StatefulWidget implements AutoRouteWrapper { @@ -174,9 +173,6 @@ class _HomePageState extends State with TickerProviderStateMixin { const HomePromoBanner(), HomeFeature(), HomeStats(overview: state.dashboard.overview), - HomeTopProduct( - products: state.dashboard.topProducts, - ), const SpaceHeight(40), ], ), diff --git a/lib/presentation/pages/main/widgets/bottom_navbar.dart b/lib/presentation/pages/main/widgets/bottom_navbar.dart index 58e6761..c9d19bb 100644 --- a/lib/presentation/pages/main/widgets/bottom_navbar.dart +++ b/lib/presentation/pages/main/widgets/bottom_navbar.dart @@ -1,8 +1,6 @@ import 'package:auto_route/auto_route.dart'; import 'package:flutter/material.dart'; import 'package:hugeicons/hugeicons.dart'; -import 'package:line_icons/line_icon.dart'; -import 'package:line_icons/line_icons.dart'; import '../../../../common/extension/extension.dart';