fix icons not showing

This commit is contained in:
55nknown
2022-12-25 14:44:02 +01:00
parent 6791b1b0fc
commit 1379a059a9
4 changed files with 14 additions and 14 deletions

Binary file not shown.

View File

@@ -6,38 +6,38 @@ class FilcIcons {
static const iconFontFamily = 'FilcIcons'; static const iconFontFamily = 'FilcIcons';
/// home /// home
static const IconData home = IconData(0x00, fontFamily: iconFontFamily); static const IconData home = IconData(0x21, fontFamily: iconFontFamily);
/// linux /// linux
static const IconData linux = IconData(0x01, fontFamily: iconFontFamily); static const IconData linux = IconData(0x22, fontFamily: iconFontFamily);
/// upstairs /// upstairs
static const IconData upstairs = IconData(0x02, fontFamily: iconFontFamily); static const IconData upstairs = IconData(0x23, fontFamily: iconFontFamily);
/// downstairs /// downstairs
static const IconData downstairs = IconData(0x03, fontFamily: iconFontFamily); static const IconData downstairs = IconData(0x24, fontFamily: iconFontFamily);
/// premium /// premium
static const IconData premium = IconData(0x04, fontFamily: iconFontFamily); static const IconData premium = IconData(0x25, fontFamily: iconFontFamily);
/// tinta /// tinta
static const IconData tinta = IconData(0x05, fontFamily: iconFontFamily); static const IconData tinta = IconData(0x26, fontFamily: iconFontFamily);
/// kupak /// kupak
static const IconData kupak = IconData(0x06, fontFamily: iconFontFamily); static const IconData kupak = IconData(0x27, fontFamily: iconFontFamily);
/// homefill /// homefill
static const IconData homefill = IconData(0x07, fontFamily: iconFontFamily); static const IconData homefill = IconData(0x28, fontFamily: iconFontFamily);
/// gradesfill /// gradesfill
static const IconData gradesfill = IconData(0x08, fontFamily: iconFontFamily); static const IconData gradesfill = IconData(0x29, fontFamily: iconFontFamily);
/// timetablefill /// timetablefill
static const IconData timetablefill = IconData(0x09, fontFamily: iconFontFamily); static const IconData timetablefill = IconData(0x2a, fontFamily: iconFontFamily);
/// messagesfill /// messagesfill
static const IconData messagesfill = IconData(0x0a, fontFamily: iconFontFamily); static const IconData messagesfill = IconData(0x2b, fontFamily: iconFontFamily);
/// absencesfill /// absencesfill
static const IconData absencesfill = IconData(0x0b, fontFamily: iconFontFamily); static const IconData absencesfill = IconData(0x2c, fontFamily: iconFontFamily);
} }