I'm using Flutter, and I'd like to add a border to a widget (in this case, a text widget).
I tried TextStyle and Text, but I didn't see how to add a border.
Thanks!
You can add the TextField
as a child
to a Container
that has a BoxDecoration
with border
property:
new Container(
margin: const EdgeInsets.all(15.0),
padding: const EdgeInsets.all(3.0),
decoration: new BoxDecoration(
border: new Border.all(color: Colors.blueAccent)
),
child: new Text("My Awesome Border"),
)