【发布时间】:2023-03-05 13:09:01
【问题描述】:
我在 stackoverflow 上搜索了这个问题的答案,但没有运气。从类似的问题(Style BottomNavigationBar in Flutter)我意识到我应该按照以下方式设置主题
答案在于需要设置textTheme bodyText2
return Theme(
data: Theme.of(context).copyWith(
textTheme: Theme.of(context).textTheme.copyWith(
caption: GoogleFonts.aclonica(),
)), // sets the inactive color of the `BottomNavigationBar`
child: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
backgroundColor: Colors.transparent,
currentIndex: 0,
fixedColor: Colors.teal,
items: items.map((item) {
return BottomNavigationBarItem(
label: item.label,
icon: getIconExcl(context, item),
);
}).toList()));
【问题讨论】: