📜  颤动更改android默认字体大小 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:08.808000             🧑  作者: Mango

代码示例1
/// Android has different 'textscalefactor' settings, like:
  /// 'Small: 0.85', 'Default: 1.0', 'Large: 1.15', 'Largest: 1.3'
/// To make sure the text in your app stays as you intended it to,
  /// use the MediaQuery Widget to overwrite the system default:
@override
  Widget build(BuildContext context) {
    return MediaQuery(
      data: MediaQuery.of(context).copyWith(textScaleFactor: 1.15), // Large
      child: Scaffold(),
    ),
  };