Search code examples
flutterflutter-layout

How to make it affect device font size to RichText and TextSpan


I have a problem with RichText and TextSpan widgets. All Text widgets are affected by device font size (changed in settings) but RichText not. Any ideas about to solve it?


Solution

  • I have solved it this way:

    RichText(
        textScaleFactor: MediaQuery.of(context).textScaleFactor, <--- add this
        text: ...
    )