0

我希望 TextStyle / fontSize 来简化我的应用程序。

为此,有必要制作“

字体大小:Get.width * .030,

"附上可用的代码,颜色类似"

{颜色颜色 = Colors.white}

这是我要自定义的代码...

TextStyle _textStyle({Color color = Colors.white}) {
  return GoogleFonts.getFont(
    'Unica One',
    fontSize: Get.width * .030,
    color: color,
    letterSpacing: 0.5,
  );
}

它应该看起来像那样,但不幸的是我不知道如何正确地将它组合在一起

TextStyle _textStyle({Color color = Colors.white}{FontSize fontSize = Get.width * .030}) {
  return GoogleFonts.getFont(
    'Unica One',
    fontSize: fontSize,
    color: color,
    letterSpacing: 0.5,
  );
}
4

3 回答 3

0

带样式的文本类,

class StoryText extends Text {
  StoryText(String title, {Color mColor, double mFontSize})
      : super(title,
            style: GoogleFonts.getFont(
              'Unica One',
              fontSize: mFontSize,
              color: mColor,
              letterSpacing: 0.5,
            ));
}

// Use of above class
StoryText('title', mColor: Colors.red, mFontSize: Get.width * .030,),
于 2021-08-17T12:09:34.167 回答
0

需要将FontSize类型更改为double

TextStyle _textStyle({Color color = Colors.white ,double fontSize = Get.width * .030}) {
  return GoogleFonts.getFont(
    'Unica One',
    fontSize: fontSize,
    color: color,
    letterSpacing: 0.5,
  );
}```
于 2021-08-17T11:37:27.223 回答
0

你能告诉我如何在“TextField(”)的“hintText:”中使用它吗?

当我这样做时

hintStyle: StyledText (
                  color: Colors.black,
                ),

然后我得到错误

“参数类型 'StyledText' 不能分配给参数类型 'TextStyle?'。(文档)”

我已经调整了您的代码,使其到目前为止可以正常工作,再次感谢您..只想将它与“hintStyle”一起使用

import 'package: flutter / cupertino.dart';
import 'package: flutter / material.dart';
import 'package: google_fonts / google_fonts.dart';

class StyledText extends Text {
  StyledText (
      String title,
      {
        double fontSize = 10.5,
        color = Colors.white,
        fontWeight = FontWeight.w100,
        letterSpacing = 0.5,
        textAlign: TextAlign.center,
      })
      : super (title,
      style: GoogleFonts.getFont (
        'Unica One',
        fontSize: fontSize,
        color: color,
        fontWeight: fontWeight,
        letterSpacing: 0.5,
      ),
    textAlign: textAlign,
  );
}
于 2021-08-18T00:53:00.047 回答