Search code examples
flutterdartflutter-text

How to apply both TextStyle and textTheme to a Text widget in flutter?


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..


Solution

  • We do something like

    Theme.of(context)
    .textTheme.display1
    .merge(TextStyle(color: Colors.red)
    

    and apply it to the style