24 lines
520 B
YAML
24 lines
520 B
YAML
# 图标字体生成器配置文件
|
|
# 用于生成 Flutter IconData 常量
|
|
|
|
generator:
|
|
name: "Example App Icons"
|
|
version: "1.0"
|
|
author: "Example"
|
|
|
|
input:
|
|
# 字体文件路径
|
|
font_file: "assets/fonts/iconfont.ttf"
|
|
# JSON 配置文件路径
|
|
json_file: "assets/fonts/iconfont.json"
|
|
# 字体家族名称
|
|
font_family: "iconfont"
|
|
|
|
output:
|
|
# 生成的 Dart 文件路径
|
|
file_path: "lib/generated/icons.dart"
|
|
# 生成的类名
|
|
class_name: "AppIcons"
|
|
# 是否生成文档注释
|
|
generate_docs: true
|