小编Ris*_*gar的帖子

Flutter: How to add a column widget inside a bottom navigation bar

I've tried the following and got the out, but the body went blank. Is there any way to add a coloumn or a listview inside a bottom navigation bar

 Column(
    mainAxisAlignment:MainAxisAlignment.end,
    children: <Widget>[
      Row(
        children: <Widget>[
          Expanded(
              //button1
         ),
          Expanded(
              //button2
               ),
          Expanded(
             //button3)
      ),
      Row(
        children: <Widget>[
          Expanded(
            //button4
          ),
          Expanded(
            //button5)
        ],
      )
    ],
  ),
Run Code Online (Sandbox Code Playgroud)

flutter bottomnavigationview

5
推荐指数
2
解决办法
1692
查看次数

标签 统计

bottomnavigationview ×1

flutter ×1