In flutter, is there an option to draw a vertical line between components as in the image.
There are 2 easy ways for both of them.
Vertical dividers:
VerticalDivider()
Container( width: 1, height: double.maxFinite, color: Colors.grey, )
Horizontal dividers:
Divider()
Container( height: 1, width: double.maxFinite, color: Colors.grey, )