outline box flutter code example
Example 1: flutter container border
Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.red, // red as border color
),
),
child: Text("Your text...")
)
Example 2: flutter text border color
Stack(
children: <Widget>[
// Stroked text as border.
Text(
'Greetings, planet!',
style: TextStyle(
fontSize: 40,
foreground: Paint()
..style = PaintingStyle.stroke
..strokeWidth = 6
..color = Colors.blue[700],
),
),
// Solid text as fill.
Text(
'Greetings, planet!',
style: TextStyle(
fontSize: 40,
color: Colors.grey[300],
),
),
],
)