我正在寻找一种方法来显示谷歌字体在小型大写字母。我使用的是google_fonts软件包。
9gm1akwq1#
可以在TextStyle中使用FontFeature属性,如下所示:
TextStyle
FontFeature
import "dart:ui"; 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 ), ),
1条答案
按热度按时间9gm1akwq1#
可以在
TextStyle
中使用FontFeature
属性,如下所示: