flutterAndroid

Flutter一劳永逸解决Text字体大小随系统改变的问题

2021-09-29  本文已影响0人  前端技术小咖

Flutter提供的 Text Widget如果不设置 textScaleFactor 参数,在默认情况下会跟随系统字体的变化而改变,textScaleFactor 变量的注释有详细的说明:

class Text extends StatelessWidget {
  ......
  /// The number of font pixels for each logical pixel.
  ///
  /// For example, if the text scale factor is 1.5, text will be 50% larger than
  /// the specified font size.
  ///
  /// The value given to the constructor as textScaleFactor. If null, will
  /// use the [MediaQueryData.textScaleFactor] obtained from the ambient
  /// [MediaQuery], or 1.0 if there is no [MediaQuery] in scope.
  final double? textScaleFactor;
  ......
}

如果在项目中只有少数几个 Text 需要固定 fontSize,在 Text 中设置 textScaleFactor 是很方便的。但是如何项目中所有的 Text 的都要固定 fontSize ,可以参考以下两个方案:

方案一:修改全局配置

实现 MaterialApp 对象的 builder 参数,返回由 MediaQuery 包裹的Widget,通过 MediaQuerydata 参数设置全局的文字的 textScaleFactor1.0 ,示例代码如下:

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      ......
      home: HomePage(),
      builder: (context, widget) {
        return MediaQuery(
          //设置全局的文字的textScaleFactor为1.0,文字不再随系统设置改变
          data: MediaQuery.of(context).copyWith(textScaleFactor: 1.0),
          child: widget,
        );
      },
    );
  }
}
方案二:自定义Text

自定义 FixedSizeText 并继承 Text,在FixedSizeText的构造函数中设置textScaleFactor参数的默认值为1.0,然后将这些参数通过super传给Text,最后在布局Widget的时候使用FixedSizeText代替Text就可以了。 FixedSizeText的实现代码如下:

import 'package:flutter/material.dart';
import 'package:flutter_app2/View/FixedSizeText.dart';

class FixedSizeText extends Text {
  const FixedSizeText(String data, {
    Key key,
    TextStyle style,
    StrutStyle strutStyle,
    TextAlign textAlign,
    TextDirection textDirection,
    Locale locale,
    bool softWrap,
    TextOverflow overflow,
    double textScaleFactor = 1.0,
    int maxLines,
    String semanticsLabel,
  }) : super(data,
      key:key,
      style:style,
      strutStyle:strutStyle,
      textAlign:textAlign,
      textDirection:textDirection,
      locale:locale,
      softWrap:softWrap,
      overflow:overflow,
      textScaleFactor:textScaleFactor,
      maxLines:maxLines,
      semanticsLabel:semanticsLabel);
}
参考文章:
  1. Flutter如何设置文字大小不随系统设置而改变?
  2. flutter 禁止字体大小跟随系统字体改变大小
上一篇下一篇

猜你喜欢

热点阅读