Adding extra padding to TextSpan background in RichText widget. The new solution in 2019 with flutter 1.7.8 is WidgetSpan, you could just add a Container and a Padding or any combination of widget to make more variety!
Here is an example to use on the case:
1 2 3 4 5 6 7 | WidgetSpan( child: Container( color: Colors.red, padding: EdgeInsets.all(8.0), child: Text("background on me", style: ...), ) ) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.