Published
- 1 min read
flutter boxdecoration add border
The solution for this is noted below
flutter boxdecoration add border
Solution
// Flutter add border | box decoration
Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.blue,
),
),
child: Text('Whatever Yall!'),
)
Try other methods by searching on the site. That is if this doesn’t work