Ever since I started developing apps with Flutter, I found that using the Text() widget in combination with styles becomes quite difficult to read, when flying over the code. The ugly problem Imagine you want to add a headline, you’d have something like this. Text('Body text', style: Theme.of(context).textTheme.headline1) You’d have to look at…