Merge branch 'release/1.0.6'

This commit is contained in:
Max 2025-11-26 09:47:33 +08:00
commit 4ab2ac3500
6 changed files with 139 additions and 22 deletions

5
.gitignore vendored
View File

@ -8,3 +8,8 @@ example/.dart_tool/package_config_subset
example/.dart_tool/package_graph.json
example/.dart_tool/version
example/.idea/*
# macOS metadata files
._*
.DS_Store

View File

@ -4,7 +4,31 @@ import 'package:yx_icon_fonts_example/example_icon.dart';
//
final icons = <ExampleIcon>[
//
ExampleIcon(YXIconFonts.icon30Edit, 'icon 30 edit'),
ExampleIcon(YXIconFonts.icon44Edit, 'icon 44 edit'),
ExampleIcon(YXIconFonts.icon36EditLine, 'icon 36 edit line'),
ExampleIcon(YXIconFonts.icon24Edit, 'icon 24 edit'),
//
ExampleIcon(YXIconFonts.icon24Copy2, 'icon 24 copy2'),
ExampleIcon(YXIconFonts.icon24Copy, 'icon 24 copy'),
//
ExampleIcon(YXIconFonts.icon30Delete, 'icon 30 delete'),
ExampleIcon(YXIconFonts.icon44Delete, 'icon 44 delete'),
ExampleIcon(YXIconFonts.icon36Delete, 'icon 36 delete'),
ExampleIcon(YXIconFonts.icon24Delete, 'icon 24 delete'),
//
ExampleIcon(YXIconFonts.icon36Add, 'icon 36 add'),
ExampleIcon(YXIconFonts.icon24Add, 'icon 24 add'),
ExampleIcon(YXIconFonts.icon44Add, 'icon 44 add'),
ExampleIcon(YXIconFonts.icon32Add, 'icon 32 add'),
//
ExampleIcon(YXIconFonts.icon32Location, 'icon 32 location'),
ExampleIcon(YXIconFonts.icon24Mypoints, 'icon 24 mypoints'),
ExampleIcon(YXIconFonts.icon44Search, 'icon 44 search'),
ExampleIcon(YXIconFonts.icon36ClearPeople, 'icon 36 clear people'),
ExampleIcon(YXIconFonts.icon32Publish, 'icon 32 publish'),
@ -22,6 +46,8 @@ final icons = <ExampleIcon>[
ExampleIcon(YXIconFonts.icon24Plus, 'icon 24 plus'),
//
ExampleIcon(YXIconFonts.icon44MeAbout, 'icon 44 me about'),
ExampleIcon(YXIconFonts.icon44MePointsmall, 'icon 44 me pointsmall'),
ExampleIcon(YXIconFonts.icon44MeLogOut, 'icon 44 me log out'),
ExampleIcon(YXIconFonts.icon44MeSwitch, 'icon 44 me switch'),
ExampleIcon(YXIconFonts.icon44MePassword, 'icon 44 me password'),
@ -36,16 +62,6 @@ final icons = <ExampleIcon>[
ExampleIcon(YXIconFonts.icon44WechatShareWhite, 'icon 44 wechat share white'),
ExampleIcon(YXIconFonts.icon44Share, 'icon 44 share'),
//
ExampleIcon(YXIconFonts.icon44Edit, 'icon 44 edit'),
ExampleIcon(YXIconFonts.icon36EditLine, 'icon 36 edit line'),
ExampleIcon(YXIconFonts.icon24Edit, 'icon 24 edit'),
//
ExampleIcon(YXIconFonts.icon44Delete, 'icon 44 delete'),
ExampleIcon(YXIconFonts.icon36Delete, 'icon 36 delete'),
ExampleIcon(YXIconFonts.icon24Delete, 'icon 24 delete'),
//
ExampleIcon(YXIconFonts.iconMsgContacts, 'icon msg contacts'),
ExampleIcon(YXIconFonts.iconMsgVideo, 'icon msg video'),
@ -85,17 +101,9 @@ final icons = <ExampleIcon>[
ExampleIcon(YXIconFonts.icon44More2, 'icon 44 more2'),
ExampleIcon(YXIconFonts.icon44More, 'icon 44 more'),
//
ExampleIcon(YXIconFonts.icon24Copy, 'icon 24 copy'),
//
ExampleIcon(YXIconFonts.icon44Calendar, 'icon 44 calendar'),
//
ExampleIcon(YXIconFonts.icon24Add, 'icon 24 add'),
ExampleIcon(YXIconFonts.icon44Add, 'icon 44 add'),
ExampleIcon(YXIconFonts.icon32Add, 'icon 32 add'),
//
ExampleIcon(YXIconFonts.icon44Keyboard, 'icon 44 keyboard'),

Binary file not shown.

View File

@ -8,6 +8,8 @@ class FontIcons {
FontIcons._();
//
static const IconData icon32Location = YXIconFonts.icon32Location;
static const IconData icon24Mypoints = YXIconFonts.icon24Mypoints;
static const IconData icon44Search = YXIconFonts.icon44Search;
static const IconData icon36ClearPeople = YXIconFonts.icon36ClearPeople;
static const IconData icon32Publish = YXIconFonts.icon32Publish;
@ -23,16 +25,20 @@ class FontIcons {
static const IconData icon36OnlySee = YXIconFonts.icon36OnlySee;
//
static const IconData icon30Edit = YXIconFonts.icon30Edit;
static const IconData icon44Edit = YXIconFonts.icon44Edit;
static const IconData icon36EditLine = YXIconFonts.icon36EditLine;
static const IconData icon24Edit = YXIconFonts.icon24Edit;
//
static const IconData icon30Delete = YXIconFonts.icon30Delete;
static const IconData icon44Delete = YXIconFonts.icon44Delete;
static const IconData icon36Delete = YXIconFonts.icon36Delete;
static const IconData icon24Delete = YXIconFonts.icon24Delete;
//
static const IconData icon44MeAbout = YXIconFonts.icon44MeAbout;
static const IconData icon44MePointsmall = YXIconFonts.icon44MePointsmall;
static const IconData icon44MeLogOut = YXIconFonts.icon44MeLogOut;
static const IconData icon44MeSwitch = YXIconFonts.icon44MeSwitch;
static const IconData icon44MePassword = YXIconFonts.icon44MePassword;
@ -86,17 +92,18 @@ class FontIcons {
static const IconData icon44More = YXIconFonts.icon44More;
//
static const IconData icon24Copy2 = YXIconFonts.icon24Copy2;
static const IconData icon24Copy = YXIconFonts.icon24Copy;
//
static const IconData icon44Calendar = YXIconFonts.icon44Calendar;
//
static const IconData icon44WechatShareWhite =
YXIconFonts.icon44WechatShareWhite;
static const IconData icon44WechatShareWhite = YXIconFonts.icon44WechatShareWhite;
static const IconData icon44Share = YXIconFonts.icon44Share;
//
static const IconData icon36Add = YXIconFonts.icon36Add;
static const IconData icon24Add = YXIconFonts.icon24Add;
static const IconData icon24Plus = YXIconFonts.icon24Plus;
static const IconData icon44Add = YXIconFonts.icon44Add;
@ -104,4 +111,5 @@ class FontIcons {
//
static const IconData icon44Keyboard = YXIconFonts.icon44Keyboard;
}

View File

@ -1,10 +1,66 @@
{
"id": "4944890",
"name": "学习官OA系统",
"name": "劝学APP-学习官OA系统",
"font_family": "iconfont",
"css_prefix_text": "",
"description": "学习官OA系统图标",
"description": "劝学APP-学习官OA系统图标",
"glyphs": [
{
"icon_id": "46077069",
"name": "icon_30_edit",
"font_class": "icon_30_edit",
"unicode": "e65b",
"unicode_decimal": 58971
},
{
"icon_id": "46077068",
"name": "icon_24_copy2",
"font_class": "icon_24_copy2",
"unicode": "e65c",
"unicode_decimal": 58972
},
{
"icon_id": "46077067",
"name": "icon_30_delete",
"font_class": "icon_30_delete",
"unicode": "e65d",
"unicode_decimal": 58973
},
{
"icon_id": "46077053",
"name": "icon_36_add",
"font_class": "icon_36_add",
"unicode": "e65a",
"unicode_decimal": 58970
},
{
"icon_id": "46076927",
"name": "icon_32_location",
"font_class": "icon_32_location",
"unicode": "e659",
"unicode_decimal": 58969
},
{
"icon_id": "46076827",
"name": "icon_24_mypoints",
"font_class": "icon_24_mypoints",
"unicode": "e657",
"unicode_decimal": 58967
},
{
"icon_id": "45986664",
"name": "icon_44_me_about",
"font_class": "icon_44_me_about",
"unicode": "e656",
"unicode_decimal": 58966
},
{
"icon_id": "45986657",
"name": "icon_44_me_pointsmall",
"font_class": "icon_44_me_pointsmall",
"unicode": "e658",
"unicode_decimal": 58968
},
{
"icon_id": "45876267",
"name": "icon_44_search",

View File

@ -9,6 +9,46 @@ class YXIconFonts {
//
YXIconFonts._();
/// icon_30_edit
///
/// Unicode: e65b
static const IconData icon30Edit = YXIconData(0xe65b);
/// icon_24_copy2
///
/// Unicode: e65c
static const IconData icon24Copy2 = YXIconData(0xe65c);
/// icon_30_delete
///
/// Unicode: e65d
static const IconData icon30Delete = YXIconData(0xe65d);
/// icon_36_add
///
/// Unicode: e65a
static const IconData icon36Add = YXIconData(0xe65a);
/// icon_32_location
///
/// Unicode: e659
static const IconData icon32Location = YXIconData(0xe659);
/// icon_24_mypoints
///
/// Unicode: e657
static const IconData icon24Mypoints = YXIconData(0xe657);
/// icon_44_me_about
///
/// Unicode: e656
static const IconData icon44MeAbout = YXIconData(0xe656);
/// icon_44_me_pointsmall
///
/// Unicode: e658
static const IconData icon44MePointsmall = YXIconData(0xe658);
/// icon_44_search
///
/// Unicode: e655