For a Text like:
Text(
'Hello World',
style: Theme.of(context).textTheme.display1,
)
Is there a way to merge textTheme with a TextStyle? Like say, to modify the color of the text..
We do something like
Theme.of(context)
.textTheme.display1
.merge(TextStyle(color: Colors.red)
and apply it to the style