seong
Flutter - 사용자 설정 폰트 크기 무시하기 본문
사용자가 OS에서 개인적으로 설정한 크기로 인해 UI가 깨지는 현상이 발생했고, 모든 Text의 크기를 앱에서 제공하는 크기로 설정하는 크기로 제공 해야했다.
모두 TextScale 의 크기를 1로 통일
return MaterialApp(
builder: (context, child) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaleFactor: 1),
child: child!);
},
'Flutter > Flutter' 카테고리의 다른 글
Flutter -권한 요청 iOS PermissionHandler (0) | 2024.09.19 |
---|---|
Flutter - BottomNav 더블 탭시 화면의 스크롤 가장 위로 보내기 (0) | 2024.08.09 |
Flutter - Flutter with Python (2) 파이썬 결과 값 View로 보여주기 (5) | 2024.05.17 |
Flutter - Flutter with Python (1) (0) | 2024.05.17 |
Flutter - flutter_foreground_task (1) (0) | 2024.05.14 |