Flutter - Vertical Divider

后端 未结 10 2070
再見小時候
再見小時候 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:05

    Tried with VerticalDivider() but cannot get any divider. I Solved it with

     Container(color: Colors.black45, height: 50, width: 2,),
    
    

提交回复
热议问题