Flutter/Flutter
Flutter - 사용자 설정 폰트 크기 무시하기
hyeonseong
2024. 7. 8. 10:27
사용자가 OS에서 개인적으로 설정한 크기로 인해 UI가 깨지는 현상이 발생했고, 모든 Text의 크기를 앱에서 제공하는 크기로 설정하는 크기로 제공 해야했다.
모두 TextScale 의 크기를 1로 통일
return MaterialApp(
builder: (context, child) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaleFactor: 1),
child: child!);
},