小编Meh*_* K.的帖子

没有文本的底部导航栏

是的,我的问题是这个。我怎么能这样做?

在此处输入图片说明

我做了一个 BottomNavigationBar 但它看起来像这样。

在此处输入图片说明

我的代码是这样的:

bottomNavigationBar: BottomNavigationBar(
    items: <BottomNavigationBarItem>[
      BottomNavigationBarItem(
        icon: Icon(Icons.home),
        title: Text("Home"),
      ),
      BottomNavigationBarItem(
        icon: Icon(Icons.markunread),
        title: Text("Chat"),
      ),
      BottomNavigationBarItem(
        icon: Icon(Icons.location_on),
        title: Text("Your Country"),
      ),
    ],
    fixedColor: Colors.blue,
    onTap: clickedBottomBtn,
  ),
Run Code Online (Sandbox Code Playgroud)

flutter

5
推荐指数
1
解决办法
4394
查看次数

标签 统计

flutter ×1