chinese_font_library 0.2.0 chinese_font_library: ^0.2.0 copied to clipboard
Dedicated package for rendering Chinese fonts in Flutter.
chinese_font_library 意在优化中文字体的跨平台渲染,目前支持:
- 多字重的渲染
- 动态加载字体
Features #
多字重的渲染
Flutter使用的系统默认字体多为西文字体,因此不同平台下的中文字体通常渲染为normal字重或bold字重,且bold字重为计算后得到的字重,并非原生bold字重,严重影响观感。
解决方案为使用.useSystemChineseFont()
修改已有的textStyle
:
Text(
'你好世界 hello world',
style: TextStyle(fontWeight: FontWeight.w100).useSystemChineseFont(),
)
动态加载字体
如果您不满足于系统内置的中文字体,想使用自己精选的中文字体,而中文字体通常体积较大,放在安装包中并非最佳选择。
解决方案为通过网络动态加载字体,仅需下载一次:
DynamicFont.url(
fontFamily: 'CustomFontFromWeb',
url: 'https://raw.githubusercontent.com/LastMonopoly/chinese_font_library/master/example/assets/SmileySans-Oblique.ttf',
).load()
Results #
Roadmap #
如有任何意见或建议,请在Github上联系我。
- ❌ Vivo
- ❌ Oppo
- ❌ Web
- ✅ 小米 / 红米 / MIUI
- ✅ Windows 10
- ✅ Apple / iOS / macOS
- ✅ 华为 HarmonyOS (自动支持,无需任何操作)
Getting started #
pubspec.yaml
dependencies:
...
chinese_font_library: ^0.2.0