Skip to content

Commit

Permalink
fix: disable TextScaler
Browse files Browse the repository at this point in the history
  • Loading branch information
sspzoa committed Aug 22, 2024
1 parent 0d1aa45 commit 5fde6bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ void main() async {
() {
ThemeService themeService = Get.find<ThemeService>();
return GetMaterialApp(
builder: (context, child) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaler: TextScaler.noScaling),
child: child!,
);
},
title: '디미페이',
initialRoute: getInintialRoute(debug: false),
getPages: AppPages.pages,
Expand Down

0 comments on commit 5fde6bd

Please sign in to comment.