flutter_easyloading
flutter_easyloading copied to clipboard
iOS系统上的loading字体随系统设置中的字体放大了,textScaleFactor设置无效。
CupertinoApp(
builder: EasyLoading.init(builder: (context, widget) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0),
child: widget!,
);
}),
)
这样可以固定其他所有组件的字体,唯独Loading中的文字还是放大版。
Thanks for taking the time to open an issue. I will have a look and answer as soon as possible.