mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-13 20:53:58 +08:00
155 lines
3.7 KiB
Dart
155 lines
3.7 KiB
Dart
// ignore_for_file: constant_identifier_names
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
class CustomIcons {
|
|
static const IconData ai_circle = IconData(
|
|
0xe800,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData coin = IconData(
|
|
0xe801,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData dm_off = IconData(
|
|
0xe802,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData dm_on = IconData(
|
|
0xe803,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData dm_settings = IconData(
|
|
0xe804,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData dyn = IconData(
|
|
0xe805,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData fav = IconData(
|
|
0xe806,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData flip_rotate_90 = IconData(
|
|
0xe807,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData identifier_circle = IconData(
|
|
0xe808,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData live_reserve = IconData(
|
|
0xe809,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData open_in_full_rotate_45 = IconData(
|
|
0xe80a,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData player_dm_tip_back = IconData(
|
|
0xe80b,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData player_dm_tip_copy = IconData(
|
|
0xe80c,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData player_dm_tip_like = IconData(
|
|
0xe80d,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData player_dm_tip_like_solid = IconData(
|
|
0xe80e,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData player_dm_tip_recall = IconData(
|
|
0xe80f,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData repeat_rounded_rotate_90 = IconData(
|
|
0xe810,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData share = IconData(
|
|
0xe811,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData share_line = IconData(
|
|
0xe812,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData share_node = IconData(
|
|
0xe813,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData shield_play_arrow = IconData(
|
|
0xe814,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData shield_published = IconData(
|
|
0xe815,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData shield_reply = IconData(
|
|
0xe816,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData shopping_bag_not_interested = IconData(
|
|
0xe817,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData splitscreen_rotate_90 = IconData(
|
|
0xe818,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData star_favorite_line = IconData(
|
|
0xe819,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData star_favorite_solid = IconData(
|
|
0xe81a,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData thumbs_down = IconData(
|
|
0xe81b,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData thumbs_down_outline = IconData(
|
|
0xe81c,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData thumbs_up = IconData(
|
|
0xe81d,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData thumbs_up_fill = IconData(
|
|
0xe81e,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData thumbs_up_line = IconData(
|
|
0xe81f,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData thumbs_up_outline = IconData(
|
|
0xe820,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData topic_tag = IconData(
|
|
0xe821,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData touch_app_rotate_270 = IconData(
|
|
0xe822,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData view_headline_rotate_90 = IconData(
|
|
0xe823,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
static const IconData watch_later = IconData(
|
|
0xe824,
|
|
fontFamily: 'custom_icon',
|
|
);
|
|
}
|