About page

This commit is contained in:
2025-09-13 02:26:35 +08:00
parent 2575803aa4
commit 3b315d26fa
11 changed files with 157 additions and 50 deletions

View File

@@ -29,11 +29,8 @@ class _HomeScreenState extends State<HomeScreen> {
body: _widgetOptions.elementAt(_selectedIndex),
bottomNavigationBar: BottomNavigationBar(
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.calculate),
label: 'Calculator',
),
BottomNavigationBarItem(icon: Icon(Icons.info), label: 'About'),
BottomNavigationBarItem(icon: Icon(Icons.calculate), label: '计算'),
BottomNavigationBarItem(icon: Icon(Icons.info), label: '关于'),
],
currentIndex: _selectedIndex,
onTap: _onItemTapped,