大家好,是否可以在bottomNavigationBarItem上隐藏标题?
我当前的设置如下:
BottomNavigationBar(
iconSize: 30.0,
type: BottomNavigationBarType.fixed,
currentIndex: 0,
items: [
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: new Text(""),
),
BottomNavigationBarItem(
icon: Icon(Icons.delete),
title: new Text("",),
)
],
),
当然它没有显示标题,但图标没有居中。