Flutter - Vertical Divider

后端 未结 10 2069
再見小時候
再見小時候 2021-01-01 08:37

In flutter, is there an option to draw a vertical line between components as in the image.

10条回答
  •  南方客
    南方客 (楼主)
    2021-01-01 09:21

    Try to wrap it inside the Container with some height as

    Container(height: 80, child: VerticalDivider(color: Colors.red)),
    

提交回复
热议问题