flutter 真机iOS字体偏小
Posted 黄毛火烧雪下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flutter 真机iOS字体偏小相关的知识,希望对你有一定的参考价值。
造成原因:苹果手机用户把字体设置成小号字体
关键代码
MediaQuery.of(context).copyWith(textScaleFactor: 1.0, boldText: false)
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
brightness: Brightness.light,
primaryColorBrightness:Brightness.light,
textTheme: TextTheme(display1: TextStyle(fontSize: 30)),
fontFamily: "PingFang SC",
primaryColor: Color(0xfff9f9f9),
),
// home: LoginInfoController(),
home: SplashPage(),
//加上下面这段代码
builder: (BuildContext context, Widget child)
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0, boldText: false),
child: child
);
,
);
以上是关于flutter 真机iOS字体偏小的主要内容,如果未能解决你的问题,请参考以下文章
Mac系统Androidstudio Flutter项目连接不了iOS真机,安卓设备可以。Xcode是可以连接iOS真机的。