react native 图标字体

https://developer.aliyun.com/mirror/npm/package/react-native-iconfont-cli

安装

1
yarn add react-native-svg

因为涉及到原生代码, 需要重新安装应用

1
2
3
4
5
6
7
# 重新安装 ios
cd ios
pod install
npm run ios

# 重新安装 andorid
npm run android
1
2
3
4
yarn add -D react-native-iconfont-cli

# 创建配置文件
npx iconfont-init

根据需求配置 iconfont.json

1
2
3
4
5
6
7
{
"symbol_url": "//at.alicdn.com/t/font_2018217_2h9xudzdl62.js",
"use_typescript": true,
"save_dir": "./src/components/iconfont",
"trim_icon_prefix": "",
"default_icon_size": 18
}

生成组件

1
npx iconfont-rn