如何在BottomNavigationBarItem上隐藏标题

时间:2018-08-30 10:10:52

标签: dart flutter

大家好,是否可以在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("",),
        )
    ],
),

当然它没有显示标题,但图标没有居中。

0 个答案:

没有答案