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