Flutter - Vertical Divider

后端 未结 10 2078
再見小時候
再見小時候 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 08:56

    There are 2 easy ways for both of them.


    Vertical dividers:

    1. VerticalDivider()
      
    2. Container(
        width: 1,
        height: double.maxFinite,
        color: Colors.grey,
      )
      

    Horizontal dividers:

    1. Divider()
      
    2. Container(
        height: 1,
        width: double.maxFinite,
        color: Colors.grey,
      )
      

提交回复
热议问题