我想根据排列的长度来制作按钮。 但我不知道 因为我是初学者。
lst1
答案 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