feat:更新统计模块

This commit is contained in:
2025-07-28 16:22:52 +08:00
parent 34780651a8
commit 8923d9e63a
9 changed files with 555 additions and 214 deletions

View File

@@ -14,13 +14,18 @@ class NavBar extends StatelessWidget {
@override
Widget build(BuildContext context) {
return BottomNavigationBar(
currentIndex: currentIndex,
iconSize: 25,
type: BottomNavigationBarType.fixed,
backgroundColor: Colors.white,
items: navItems,
onTap: onTap,
return Container(
decoration: BoxDecoration(
border: Border(top: BorderSide(color: Theme.of(context).primaryColor)),
),
child: BottomNavigationBar(
currentIndex: currentIndex,
iconSize: 25,
type: BottomNavigationBarType.fixed,
backgroundColor: Colors.white,
items: navItems,
onTap: onTap,
),
);
}
}