Answers for "flutter conatiner border"

16

flutter container border

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.red,  // red as border color
    ),
  ),
  child: Text("Your text...")
)
Posted by: Guest on September-25-2020
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

Browse Popular Code Answers by Language