Answers for "flutter circle with line vertical"

1

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
3

circle dot in flutter

Container(
                          width: 5,
                          height: 5,
                          decoration: BoxDecoration(
                            shape: BoxShape.circle,
                            color: Colors.deepPurpleAccent,
                          ),
                        ),
Posted by: Guest on September-03-2021

Code answers related to "flutter circle with line vertical"

Browse Popular Code Answers by Language