You can add a border to any widget in Flutter.All you have to do is to make Container
widget as the parent of the target widget.The Container
contains a decoration
parameter which can be manipulated as per requirement.Suppose we have a Text widget like:-
Text("Hello Everyone!!! Welcome to TechStroke!");
This will give something like this:-

But if we add a Container like this:-
Container(
decoration: BoxDecoration(border: Border.all()),
child: Text(
"Hello Everyone!!! Welcome to TechStroke!",
style: TextStyle(fontSize: 22.0),
),
),
Will give output like this:-
