In flutter, is there an option to draw a vertical line between components as in the image.
Tried with VerticalDivider() but cannot get any divider. I Solved it with
VerticalDivider()
Container(color: Colors.black45, height: 50, width: 2,),