Answers for "flutter vertical divider"

6

flutter divider

const Divider(
   thickness: 5, // thickness of the line
   indent: 20, // empty space to the leading edge of divider.
   endIndent: 20, // empty space to the trailing edge of the divider.
   color: Colors.black, // The color to use when painting the line.
   height: 20, // The divider's height extent.
 ),
Posted by: Guest on August-20-2021
0

how to create a vertical line in flutter

VerticalDivider(color: Colors.black,
          thickness: 2, width: 20,
          indent: 200,
          endIndent: 200,)
Posted by: Guest on August-30-2020

Browse Popular Code Answers by Language