From 5fde6bd7d56527b4b64df265a89c754988dcbaee Mon Sep 17 00:00:00 2001 From: Seungpyo Suh Date: Thu, 22 Aug 2024 14:57:09 +0900 Subject: [PATCH] fix: disable TextScaler --- lib/main.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/main.dart b/lib/main.dart index 3c56a1f3..c1ede502 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -19,6 +19,12 @@ void main() async { () { ThemeService themeService = Get.find(); 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,