BottomNavigationBar
是一种常见的用户界面组件,通常位于应用程序的底部,用于导航不同的页面或功能模块。它通常包含几个图标或标签,用户可以通过点击这些图标或标签来切换不同的视图。
在某些情况下,BottomNavigationBar
可能会出现颤动现象,即图标或标签在点击后出现短暂的闪烁或移动。
ConstraintLayout
或其他布局工具来优化布局。import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('BottomNavigationBar Example'),
),
body: Center(
child: Text('Content goes here'),
),
bottomNavigationBar: BottomNavigationBar(
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home',
),
BottomNavigationBarItem(
icon: Icon(Icons.business),
label: 'Business',
),
BottomNavigationBarItem(
icon: Icon(Icons.school),
label: 'School',
),
],
currentIndex: _selectedIndex,
selectedItemColor: Colors.blue,
onTap: _onItemTapped,
),
),
);
}
int _selectedIndex = 0;
void _onItemTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
}
通过以上方法,可以有效解决 BottomNavigationBar
的颤动问题,提升用户体验。
领取专属 10元无门槛券
手把手带您无忧上云