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.
Use a container with Boxdercoration.
BoxDecoration( border: Border.all( width: 3.0 ), borderRadius: BorderRadius.circular(10.0) );