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.
You can use Container to contain your widget:
Container( decoration: BoxDecoration( border: Border.all( color: Color(0xff000000), width: 1, )), child: Text() ),