How to set a text background with Flutter?
TL;DR – (Updated 07-08-2019) Using style property (backgroundColor) Text( ‘Some text…’, style: TextStyle(backgroundColor: Colors.blue), ) Using style property (background) Text( ‘Some text…’, style: TextStyle(background: Paint()..color = Colors.blue), ) Using a DecoratedBox const DecoratedBox( decoration: const BoxDecoration(color: Colors.blue), child: const Text(‘Some text…’), ); Long answer First of all, welcome to Flutter and StackOverflow 🙂 That happens … Read more