我正在寻找一种以小写字母显示Google字体的方法。
我正在使用google_fonts包。
谢谢您的帮助 ! :)

最佳答案

您可以在TextStyle内使用FontFeature属性,如下所示:

Text('This is a Google Font',
      style: GoogleFonts.lato(
        textStyle: TextStyle(fontFeatures:[FontFeature.enable('smcp')], color: Colors.blue, letterSpacing: .5),
        //smcp as in small caps
      ),
    ),

关于flutter - 有没有办法在Flutter中以小写字母显示文本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63568754/

10-10 10:12