update home ui

This commit is contained in:
efrilm
2026-05-12 15:47:38 +07:00
parent 86d581f5ea
commit 9076c9c66e
16 changed files with 442 additions and 95 deletions
@@ -1,5 +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';
@@ -27,22 +28,22 @@ class _MainBottomNavbarState extends State<MainBottomNavbar> {
type: BottomNavigationBarType.fixed,
items: [
BottomNavigationBarItem(
icon: LineIcon(LineIcons.home),
icon: HugeIcon(icon: HugeIcons.strokeRoundedHome01),
label: context.lang.home,
tooltip: context.lang.home,
),
BottomNavigationBarItem(
icon: LineIcon(LineIcons.moneyBill),
icon: HugeIcon(icon: HugeIcons.strokeRoundedBorderFull),
label: context.lang.order,
tooltip: context.lang.order,
),
BottomNavigationBarItem(
icon: LineIcon(LineIcons.barChart),
icon: HugeIcon(icon: HugeIcons.strokeRoundedChart03),
label: context.lang.report,
tooltip: context.lang.report,
),
BottomNavigationBarItem(
icon: LineIcon(LineIcons.user),
icon: HugeIcon(icon: HugeIcons.strokeRoundedUser),
label: context.lang.profile,
tooltip: context.lang.profile,
),