feat: 增加icon 更新
This commit is contained in:
parent
079ec78755
commit
416aad2391
|
|
@ -4,6 +4,9 @@ import 'package:yx_icon_fonts_example/example_icon.dart';
|
||||||
// 此文件由脚本自动生成!
|
// 此文件由脚本自动生成!
|
||||||
|
|
||||||
final icons = <ExampleIcon>[
|
final icons = <ExampleIcon>[
|
||||||
|
// 其他图标
|
||||||
|
ExampleIcon(YXIconFonts.icon24Up, 'icon 24 up'),
|
||||||
|
|
||||||
// 消息相关图标
|
// 消息相关图标
|
||||||
ExampleIcon(YXIconFonts.iconMsgContacts, 'icon msg contacts'),
|
ExampleIcon(YXIconFonts.iconMsgContacts, 'icon msg contacts'),
|
||||||
ExampleIcon(YXIconFonts.iconMsgViedo, 'icon msg viedo'),
|
ExampleIcon(YXIconFonts.iconMsgViedo, 'icon msg viedo'),
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -5,6 +5,13 @@
|
||||||
"css_prefix_text": "",
|
"css_prefix_text": "",
|
||||||
"description": "学习官OA系统图标",
|
"description": "学习官OA系统图标",
|
||||||
"glyphs": [
|
"glyphs": [
|
||||||
|
{
|
||||||
|
"icon_id": "45037865",
|
||||||
|
"name": "icon_24_up",
|
||||||
|
"font_class": "icon_24_up",
|
||||||
|
"unicode": "e645",
|
||||||
|
"unicode_decimal": 58949
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"icon_id": "44661359",
|
"icon_id": "44661359",
|
||||||
"name": "icon_msg_contacts",
|
"name": "icon_msg_contacts",
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,11 @@ class YXIconFonts {
|
||||||
// 私有构造函数,防止实例化
|
// 私有构造函数,防止实例化
|
||||||
YXIconFonts._();
|
YXIconFonts._();
|
||||||
|
|
||||||
|
/// icon_24_up 图标
|
||||||
|
///
|
||||||
|
/// Unicode: e645
|
||||||
|
static const IconData icon24Up = YXIconData(0xe645);
|
||||||
|
|
||||||
/// icon_msg_contacts 图标
|
/// icon_msg_contacts 图标
|
||||||
///
|
///
|
||||||
/// Unicode: e644
|
/// Unicode: e644
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue