사용자가 설정 - 디스플레이 옵션에서 폰트크기를 크게 키우면 내가 만든 앱에서 설정한 폰트 크기에도 영향을 주게 된다. 그러다보면 UI가 깨지게 되는데, 절대값으로 고정하는 방법이 있다 class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MultiProvider( providers: [ ChangeNotifierProvider(create: (_) => Auth()), ], child: MaterialApp( builder: (context, child) { re..