如何使用while或for来创建按钮?

时间:2019-07-06 10:39:06

标签: flutter dart

我想根据排列的长度来制作按钮。 但我不知道 因为我是初学者。

lst1

1 个答案:

答案 0 :(得分:0)

我不知道我是否完全了解您,但也许您可以尝试以下方法:

Widget menubar = Center(
    child: Container(
      padding: const EdgeInsets.all(20),
      child: Row(
        children: List.generate(10, (index) => RaisedButton(
          child: Text("Button number $index"),
        )),
      ),//Row
    ),//Container
  );//Center