commit
bbe96739da
|
|
@ -4,7 +4,18 @@ import 'package:yx_icon_fonts_example/example_icon.dart';
|
|||
// 此文件由脚本自动生成!
|
||||
|
||||
final icons = <ExampleIcon>[
|
||||
// 个人中心相关图标
|
||||
ExampleIcon(YXIconFonts.icon44MeQuit, 'icon 44 me quit'),
|
||||
ExampleIcon(YXIconFonts.icon44MePassword, 'icon 44 me password'),
|
||||
ExampleIcon(YXIconFonts.icon44MeHelp, 'icon 44 me help'),
|
||||
ExampleIcon(YXIconFonts.icon44MeVersion, 'icon 44 me version'),
|
||||
ExampleIcon(YXIconFonts.icon44MePrivacy, 'icon 44 me privacy'),
|
||||
ExampleIcon(YXIconFonts.icon44MeUser, 'icon 44 me user'),
|
||||
ExampleIcon(YXIconFonts.icon44MeSafe, 'icon 44 me safe'),
|
||||
ExampleIcon(YXIconFonts.icon44MePhone, 'icon 44 me phone'),
|
||||
|
||||
// 其他图标
|
||||
ExampleIcon(YXIconFonts.icon24Search, 'icon 24 search'),
|
||||
ExampleIcon(YXIconFonts.icon24Up, 'icon 24 up'),
|
||||
|
||||
// 消息相关图标
|
||||
|
|
@ -31,15 +42,6 @@ final icons = <ExampleIcon>[
|
|||
ExampleIcon(YXIconFonts.icon36Editline, 'icon 36 editline'),
|
||||
ExampleIcon(YXIconFonts.icon24Edit, 'icon 24 edit'),
|
||||
|
||||
// 个人中心相关图标
|
||||
ExampleIcon(YXIconFonts.icon44MePassword, 'icon 44 me password'),
|
||||
ExampleIcon(YXIconFonts.icon44MeHelp, 'icon 44 me help'),
|
||||
ExampleIcon(YXIconFonts.icon44MeVersion, 'icon 44 me version'),
|
||||
ExampleIcon(YXIconFonts.icon44MePrivacy, 'icon 44 me privacy'),
|
||||
ExampleIcon(YXIconFonts.icon44MeUser, 'icon 44 me user'),
|
||||
ExampleIcon(YXIconFonts.icon44MeSafe, 'icon 44 me safe'),
|
||||
ExampleIcon(YXIconFonts.icon44MePhone, 'icon 44 me phone'),
|
||||
|
||||
// 特殊字符图标
|
||||
ExampleIcon(YXIconFonts.icon24, 'icon 24 -'),
|
||||
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@ packages:
|
|||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "1.0.0"
|
||||
version: "1.0.1"
|
||||
sdks:
|
||||
dart: ">=3.7.0-0 <4.0.0"
|
||||
flutter: ">=3.18.0-18.0.pre.54"
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -5,6 +5,20 @@
|
|||
"css_prefix_text": "",
|
||||
"description": "学习官OA系统图标",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "45160662",
|
||||
"name": "icon_44_me_quit",
|
||||
"font_class": "icon_44_me_quit",
|
||||
"unicode": "e647",
|
||||
"unicode_decimal": 58951
|
||||
},
|
||||
{
|
||||
"icon_id": "45103313",
|
||||
"name": "icon_24_search",
|
||||
"font_class": "icon_24_search",
|
||||
"unicode": "e646",
|
||||
"unicode_decimal": 58950
|
||||
},
|
||||
{
|
||||
"icon_id": "45037865",
|
||||
"name": "icon_24_up",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,16 @@ class YXIconFonts {
|
|||
// 私有构造函数,防止实例化
|
||||
YXIconFonts._();
|
||||
|
||||
/// icon_44_me_quit 图标
|
||||
///
|
||||
/// Unicode: e647
|
||||
static const IconData icon44MeQuit = YXIconData(0xe647);
|
||||
|
||||
/// icon_24_search 图标
|
||||
///
|
||||
/// Unicode: e646
|
||||
static const IconData icon24Search = YXIconData(0xe646);
|
||||
|
||||
/// icon_24_up 图标
|
||||
///
|
||||
/// Unicode: e645
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name: yx_icon_fonts
|
||||
description: 学习官OA系统图标字体库,基于iconfont.ttf和iconfont.json生成
|
||||
version: 1.0.0
|
||||
version: 1.0.2
|
||||
homepage: https://github.com/your-username/yx_icon_fonts
|
||||
|
||||
environment:
|
||||
|
|
|
|||
Loading…
Reference in New Issue