Skip to content

Instantly share code, notes, and snippets.

@psygo
Created April 20, 2020 13:00
Show Gist options
  • Save psygo/dc8fa1af1fe486dbdfa451fb95668e03 to your computer and use it in GitHub Desktop.
Save psygo/dc8fa1af1fe486dbdfa451fb95668e03 to your computer and use it in GitHub Desktop.
How to fix the `textScaleFactor` in Flutter
MaterialApp(
builder: (BuildContext context, Widget child){
final MediaQueryData data = MediaQuery.of(context);
return MediaQuery(
data: data.copyWith(
textScaleFactor: 1.0, // hard-coding the accessibility factor
),
child: child,
);
},
)
@psygo
Copy link
Author

psygo commented Apr 20, 2020

This comes directly from Flutter Interact '19.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment