当我需要显示诸如“屏幕下方”之类的设计时,我正在制作一个屏幕,并带有树状视图和连接器。 如果有人可以从概念上建议我如何创建这样的设计,那将是非常有用的帮助。 到目前为止,我已经尝试过Gridview和tree_view。
GridView.count(
// Create a grid with 2 columns. If you change the scrollDirection to
// horizontal, this produces 2 rows.
crossAxisCount: 2,
// Generate 100 widgets that display their index in the List.
children: List.generate(100, (index) {
return Center(
child: Text(
'Item $index',
style: Theme.of(context).textTheme.headline,
),
);
}),
);