Answers for "border background of text in flutter"

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

Code answers related to "border background of text in flutter"

Browse Popular Code Answers by Language