Answers for "How to make container border flutter"

3

container border flutter

decoration: BoxDecoration(
          borderRadius: BorderRadius.circular(50.0),
          border: Border.all(
            color: Colors.blue,
            width: 2.0,
          ),
        ),
Posted by: Guest on February-01-2021

Code answers related to "How to make container border flutter"

Browse Popular Code Answers by Language