Flutter - Vertical Divider

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

    add this method anywhere.

      _verticalDivider() => BoxDecoration(
          border: Border(
            right: BorderSide(
              color: Theme.of(context).dividerColor,
              width: 0.5,
            ),
          ),
        );
    

    now wrap your content in container

    Container(
      decoration: _verticalDivider(),
      child: //your widget code
    );
    

提交回复
热议问题