diff --git a/lib/json/task_icon_bean.dart b/lib/json/task_icon_bean.dart index d5dbfcf..b34f4b0 100644 --- a/lib/json/task_icon_bean.dart +++ b/lib/json/task_icon_bean.dart @@ -45,22 +45,25 @@ class IconBean { int codePoint; String fontFamily; String fontPackage; + String iconName; bool matchTextDirection; IconBean( {this.codePoint, this.fontFamily, this.fontPackage, + this.iconName, this.matchTextDirection}); static IconData fromBean(IconBean bean) => - IconData(bean.codePoint, fontFamily: bean.fontFamily); + IconData(bean.codePoint, fontFamily: bean.fontFamily, fontPackage: bean.fontPackage == "null" ? null : bean.fontPackage); static IconBean fromMap(Map map) { IconBean bean = new IconBean(); bean.codePoint = int.parse(map['codePoint']); bean.fontFamily = map['fontFamily']; bean.fontPackage = map['fontPackage']; + bean.iconName = map['iconName']; bean.matchTextDirection = map['taskStatus'] == 'ture'; return bean; } @@ -92,6 +95,7 @@ class IconBean { 'codePoint': codePoint.toString(), 'fontFamily': fontFamily??"", 'fontPackage': fontPackage??"", + 'iconName': iconName??"", 'matchTextDirection': matchTextDirection.toString() }; } diff --git a/lib/logic/edit_page_task_logic.dart b/lib/logic/edit_page_task_logic.dart index 89ba241..1a9468a 100644 --- a/lib/logic/edit_page_task_logic.dart +++ b/lib/logic/edit_page_task_logic.dart @@ -239,7 +239,7 @@ class EditTaskPageLogic { } - + //表示当前是属于创建新的任务还是修改旧的任务 bool isEditOldTask(){ return _model.oldTaskBean != null; } @@ -252,4 +252,12 @@ class EditTaskPageLogic { return isEdit ? oldTaskTitle : defaultTitle; } + //将当前item置于顶层 + void moveToTop(int index, List list){ + final item = list[index]; + list.removeAt(index); + list.insert(0, item); + _model.refresh(); + } + } diff --git a/lib/logic/icon_setting_page_logic.dart b/lib/logic/icon_setting_page_logic.dart index ae3cf1e..35de04b 100644 --- a/lib/logic/icon_setting_page_logic.dart +++ b/lib/logic/icon_setting_page_logic.dart @@ -55,7 +55,7 @@ class IconSettingPageLogic { final name = text.isEmpty ? DemoLocalizations.of(_model.context).defaultIconName : text; _model.currentIconName = name; }, - iconName: name, + iconName: name ?? iconBean.iconName, ) ); }); diff --git a/lib/pages/edit_task_page.dart b/lib/pages/edit_task_page.dart index ae91904..4189df1 100644 --- a/lib/pages/edit_task_page.dart +++ b/lib/pages/edit_task_page.dart @@ -20,7 +20,6 @@ class EditTaskPage extends StatelessWidget { model.setMainPageModel(mainPageModel); model.setTaskIcon(taskIconBean); - final iconColor = ColorBean.fromBean(taskIconBean.colorBean); final iconData = IconBean.fromBean(taskIconBean.iconBean); @@ -47,7 +46,7 @@ class EditTaskPage extends StatelessWidget { data: ThemeData(platform: TargetPlatform.android), child: TextFormField( textAlign: TextAlign.center, - validator: (text){ + validator: (text) { model.currentTaskName = text; return null; }, @@ -73,8 +72,6 @@ class EditTaskPage extends StatelessWidget { child: ListView.builder( itemCount: model.taskDetails.length, itemBuilder: (ctx, index) { - - return Dismissible( background: Container( alignment: Alignment.centerLeft, @@ -113,13 +110,21 @@ class EditTaskPage extends StatelessWidget { ), Expanded( child: Text( - model.taskDetails[index].taskDetailName, + model.taskDetails[index].taskDetailName, style: TextStyle( color: Color.fromRGBO(130, 130, 130, 1), fontSize: 20, ), ), ), + IconButton( + icon: Icon( + Icons.arrow_upward, + color: iconColor, + ), + onPressed: () => model.logic + .moveToTop(index, model.taskDetails), + ) ], ), ), @@ -192,7 +197,7 @@ class EditTaskPage extends StatelessWidget { Icons.timelapse, color: iconColor, ), - text: model.logic.getEndTimeText(), + text: model.logic.getEndTimeText(), onTap: model.logic.pickEndTime, ), // model.logic.getIconText( diff --git a/lib/pages/icon_setting_page.dart b/lib/pages/icon_setting_page.dart index 5a75ec6..1b4a4a1 100644 --- a/lib/pages/icon_setting_page.dart +++ b/lib/pages/icon_setting_page.dart @@ -67,25 +67,34 @@ class IconSettingPage extends StatelessWidget { absorbing: model.isDeleting ? true : false, child: Container( alignment: Alignment.center, - child: Tooltip( - message: taskIcon.taskName, - child: InkWell( - child: Icon( - IconBean.fromBean(taskIcon.iconBean), - color: ColorBean.fromBean(taskIcon.colorBean), - size: 40, - ), - onTap: () { - model.logic.tapDefaultIcon(index); - if (index <= 5) return; - model.logic.onIconPress( - model.taskIcons[index].iconBean, - colorBean: model.taskIcons[index].colorBean, - name: model.taskIcons[index].taskName, - index: index, - isEdit: true, - ); - }), + child: Column( + children: [ + InkWell( + child: Icon( + IconBean.fromBean(taskIcon.iconBean), + color: ColorBean.fromBean( + taskIcon.colorBean), + size: 40, + ), + onTap: () { + model.logic.tapDefaultIcon(index); + if (index <= 5) return; + model.logic.onIconPress( + model.taskIcons[index].iconBean, + colorBean: + model.taskIcons[index].colorBean, + name: model.taskIcons[index].taskName, + index: index, + isEdit: true, + ); + }), + SizedBox(height: 2,), + Text( + taskIcon.taskName, + overflow: TextOverflow.ellipsis, + style: TextStyle(fontSize: 12), + ) + ], ), ), ), @@ -95,7 +104,8 @@ class IconSettingPage extends StatelessWidget { child: AbsorbPointer( absorbing: model.isDeleting ? false : true, child: Opacity( - opacity: (index > 5 && model.isDeleting) ? 1.0 : 0.0, + opacity: + (index > 5 && model.isDeleting) ? 1.0 : 0.0, child: GestureDetector( onTap: () => model.logic.removeIcon(index), child: Icon( @@ -117,41 +127,49 @@ class IconSettingPage extends StatelessWidget { color: Theme.of(context).dividerColor, ), Expanded( - child: SingleChildScrollView( - child: Container( - alignment: Alignment.center, - child: FutureBuilder( - future: IconBean.loadAsset(), - builder: (context, snapshot) { - if (!snapshot.hasData) { + child: Container( + alignment: Alignment.center, + child: FutureBuilder( + future: IconBean.loadAsset(), + builder: (context, snapshot) { + if (!snapshot.hasData) { + return Container( + width: 100, + height: 100, + alignment: Alignment.center, + child: CircularProgressIndicator( + valueColor: AlwaysStoppedAnimation( + Theme.of(context).primaryColor), + ), + ); + } + List icons = snapshot.data; + return GridView.count( + crossAxisCount: 5, + children: List.generate(icons.length, (index) { + final icon = icons[index]; return Container( - width: 100, - height: 100, - alignment: Alignment.center, - child: CircularProgressIndicator( - valueColor: AlwaysStoppedAnimation( - Theme.of(context).primaryColor), + margin: EdgeInsets.all(10), + child: Column( + children: [ + IconButton( + onPressed: () => model.logic.onIconPress(icon), + icon: Icon( + IconBean.fromBean(icon), + size: 30, + ), + ), + Text( + icons[index].iconName, + style: TextStyle(fontSize: 10), + overflow: TextOverflow.ellipsis, + ), + ], ), ); - } - List icons = snapshot.data; - return Wrap( - children: List.generate(icons.length, (index) { - final icon = icons[index]; - return Container( - margin: EdgeInsets.all(10), - child: IconButton( - onPressed: () => model.logic.onIconPress(icon), - icon: Icon( - IconBean.fromBean(icon), - size: 30, - ), - ), - ); - }), - ); - }), - ), + }), + ); + }), ), ) ], diff --git a/lib/utils/icon_utils.dart b/lib/utils/icon_utils.dart new file mode 100644 index 0000000..f27bce4 --- /dev/null +++ b/lib/utils/icon_utils.dart @@ -0,0 +1,1997 @@ +import 'package:flutter/material.dart'; + +class IconUtil { + static IconUtil _instance; + + static IconUtil getInstance() { + if (_instance == null) { + _instance = IconUtil._internal(); + } + return _instance; + } + + IconUtil._internal(); + + + List get icons => _icons; + + + + + + List _icons = [ + Icons.threesixty, + Icons.threed_rotation, + Icons.four_k, + Icons.ac_unit, + Icons.access_alarm, + Icons.access_alarms, + Icons.access_time, + Icons.accessibility, + Icons.accessibility_new, + Icons.accessible, + Icons.accessible_forward, + Icons.account_balance, + Icons.account_balance_wallet, + Icons.account_box, + Icons.account_circle, + Icons.adb, + Icons.add, + Icons.add_a_photo, + Icons.add_alarm, + Icons.add_alert, + Icons.add_box, + Icons.add_call, + Icons.add_circle, + Icons.add_circle_outline, + Icons.add_comment, + Icons.add_location, + Icons.add_photo_alternate, + Icons.add_shopping_cart, + Icons.add_to_home_screen, + Icons.add_to_photos, + Icons.add_to_queue, + Icons.adjust, + Icons.airline_seat_flat, + Icons.airline_seat_flat_angled, + Icons.airline_seat_individual_suite, + Icons.airline_seat_legroom_extra, + Icons.airline_seat_legroom_normal, + Icons.airline_seat_legroom_reduced, + Icons.airline_seat_recline_extra, + Icons.airline_seat_recline_normal, + Icons.airplanemode_active, + Icons.airplanemode_inactive, + Icons.airplay, + Icons.airport_shuttle, + Icons.alarm, + Icons.alarm_add, + Icons.alarm_off, + Icons.alarm_on, + Icons.album, + Icons.all_inclusive, + Icons.all_out, + Icons.alternate_email, + Icons.android, + Icons.announcement, + Icons.apps, + Icons.archive, + Icons.arrow_back, + Icons.arrow_back_ios, + Icons.arrow_downward, + Icons.arrow_drop_down, + Icons.arrow_drop_down_circle, + Icons.arrow_drop_up, + Icons.arrow_forward, + Icons.arrow_forward_ios, + Icons.arrow_left, + Icons.arrow_right, + Icons.arrow_upward, + Icons.art_track, + Icons.aspect_ratio, + Icons.assessment, + Icons.assignment, + Icons.assignment_ind, + Icons.assignment_late, + Icons.assignment_return, + Icons.assignment_returned, + Icons.assignment_turned_in, + Icons.assistant, + Icons.assistant_photo, + Icons.atm, + Icons.attach_file, + Icons.attach_money, + Icons.attachment, + Icons.audiotrack, + Icons.autorenew, + Icons.av_timer, + Icons.backspace, + Icons.backup, + Icons.battery_alert, + Icons.battery_charging_full, + Icons.battery_full, + Icons.battery_std, + Icons.battery_unknown, + Icons.beach_access, + Icons.beenhere, + Icons.block, + Icons.bluetooth, + Icons.bluetooth_audio, + Icons.bluetooth_connected, + Icons.bluetooth_disabled, + Icons.bluetooth_searching, + Icons.blur_circular, + Icons.blur_linear, + Icons.blur_off, + Icons.blur_on, + Icons.book, + Icons.bookmark, + Icons.bookmark_border, + Icons.border_all, + Icons.border_bottom, + Icons.border_clear, + Icons.border_color, + Icons.border_horizontal, + Icons.border_inner, + Icons.border_left, + Icons.border_outer, + Icons.border_right, + Icons.border_style, + Icons.border_top, + Icons.border_vertical, + Icons.branding_watermark, + Icons.brightness_1, + Icons.brightness_2, + Icons.brightness_3, + Icons.brightness_4, + Icons.brightness_5, + Icons.brightness_6, + Icons.brightness_7, + Icons.brightness_auto, + Icons.brightness_high, + Icons.brightness_low, + Icons.brightness_medium, + Icons.broken_image, + Icons.brush, + Icons.bubble_chart, + Icons.bug_report, + Icons.build, + Icons.burst_mode, + Icons.business, + Icons.business_center, + Icons.cached, + Icons.cake, + Icons.calendar_today, + Icons.calendar_view_day, + Icons.call, + Icons.call_end, + Icons.call_made, + Icons.call_merge, + Icons.call_missed, + Icons.call_missed_outgoing, + Icons.call_received, + Icons.call_split, + Icons.call_to_action, + Icons.camera, + Icons.camera_alt, + Icons.camera_enhance, + Icons.camera_front, + Icons.camera_rear, + Icons.camera_roll, + Icons.cancel, + Icons.card_giftcard, + Icons.card_membership, + Icons.card_travel, + Icons.casino, + Icons.cast, + Icons.cast_connected, + Icons.category, + Icons.center_focus_strong, + Icons.center_focus_weak, + Icons.change_history, + Icons.chat, + Icons.chat_bubble, + Icons.chat_bubble_outline, + Icons.check, + Icons.check_box, + Icons.check_box_outline_blank, + Icons.check_circle, + Icons.check_circle_outline, + Icons.chevron_left, + Icons.chevron_right, + Icons.child_care, + Icons.child_friendly, + Icons.chrome_reader_mode, + Icons.class_, + Icons.clear, + Icons.clear_all, + Icons.close, + Icons.closed_caption, + Icons.cloud, + Icons.cloud_circle, + Icons.cloud_done, + Icons.cloud_download, + Icons.cloud_off, + Icons.cloud_queue, + Icons.cloud_upload, + Icons.code, + Icons.collections, + Icons.collections_bookmark, + Icons.color_lens, + Icons.colorize, + Icons.comment, + Icons.compare, + Icons.compare_arrows, + Icons.computer, + Icons.confirmation_number, + Icons.contact_mail, + Icons.contact_phone, + Icons.contacts, + Icons.content_copy, + Icons.content_cut, + Icons.content_paste, + Icons.control_point, + Icons.control_point_duplicate, + Icons.copyright, + Icons.create, + Icons.create_new_folder, + Icons.credit_card, + Icons.crop, + Icons.crop_16_9, + Icons.crop_3_2, + Icons.crop_5_4, + Icons.crop_7_5, + Icons.crop_din, + Icons.crop_free, + Icons.crop_landscape, + Icons.crop_original, + Icons.crop_portrait, + Icons.crop_rotate, + Icons.crop_square, + Icons.dashboard, + Icons.data_usage, + Icons.date_range, + Icons.dehaze, + Icons.delete, + Icons.delete_forever, + Icons.delete_outline, + Icons.delete_sweep, + Icons.departure_board, + Icons.description, + Icons.desktop_mac, + Icons.desktop_windows, + Icons.details, + Icons.developer_board, + Icons.developer_mode, + Icons.device_hub, + Icons.device_unknown, + Icons.devices, + Icons.devices_other, + Icons.dialer_sip, + Icons.dialpad, + Icons.directions, + Icons.directions_bike, + Icons.directions_boat, + Icons.directions_bus, + Icons.directions_car, + Icons.directions_railway, + Icons.directions_run, + Icons.directions_subway, + Icons.directions_transit, + Icons.directions_walk, + Icons.disc_full, + Icons.dns, + Icons.do_not_disturb, + Icons.do_not_disturb_alt, + Icons.do_not_disturb_off, + Icons.do_not_disturb_on, + Icons.dock, + Icons.domain, + Icons.done, + Icons.done_all, + Icons.done_outline, + Icons.donut_large, + Icons.donut_small, + Icons.drafts, + Icons.drag_handle, + Icons.drive_eta, + Icons.dvr, + Icons.edit, + Icons.edit_attributes, + Icons.edit_location, + Icons.eject, + Icons.email, + Icons.enhanced_encryption, + Icons.equalizer, + Icons.error, + Icons.error_outline, + Icons.euro_symbol, + Icons.ev_station, + Icons.event, + Icons.event_available, + Icons.event_busy, + Icons.event_note, + Icons.event_seat, + Icons.exit_to_app, + Icons.expand_less, + Icons.expand_more, + Icons.explicit, + Icons.explore, + Icons.exposure, + Icons.exposure_neg_1, + Icons.exposure_neg_2, + Icons.exposure_plus_1, + Icons.exposure_plus_2, + Icons.exposure_zero, + Icons.extension, + Icons.face, + Icons.fast_forward, + Icons.fast_rewind, + Icons.fastfood, + Icons.favorite, + Icons.favorite_border, + Icons.featured_play_list, + Icons.featured_video, + Icons.feedback, + Icons.fiber_dvr, + Icons.fiber_manual_record, + Icons.fiber_new, + Icons.fiber_pin, + Icons.fiber_smart_record, + Icons.file_download, + Icons.file_upload, + Icons.filter, + Icons.filter_1, + Icons.filter_2, + Icons.filter_3, + Icons.filter_4, + Icons.filter_5, + Icons.filter_6, + Icons.filter_7, + Icons.filter_8, + Icons.filter_9, + Icons.filter_9_plus, + Icons.filter_b_and_w, + Icons.filter_center_focus, + Icons.filter_drama, + Icons.filter_frames, + Icons.filter_hdr, + Icons.filter_list, + Icons.filter_none, + Icons.filter_tilt_shift, + Icons.filter_vintage, + Icons.find_in_page, + Icons.find_replace, + Icons.fingerprint, + Icons.first_page, + Icons.fitness_center, + Icons.flag, + Icons.flare, + Icons.flash_auto, + Icons.flash_off, + Icons.flash_on, + Icons.flight, + Icons.flight_land, + Icons.flight_takeoff, + Icons.flip, + Icons.flip_to_back, + Icons.flip_to_front, + Icons.folder, + Icons.folder_open, + Icons.folder_shared, + Icons.folder_special, + Icons.font_download, + Icons.format_align_center, + Icons.format_align_justify, + Icons.format_align_left, + Icons.format_align_right, + Icons.format_bold, + Icons.format_clear, + Icons.format_color_fill, + Icons.format_color_reset, + Icons.format_color_text, + Icons.format_indent_decrease, + Icons.format_indent_increase, + Icons.format_italic, + Icons.format_line_spacing, + Icons.format_list_bulleted, + Icons.format_list_numbered, + Icons.format_list_numbered_rtl, + Icons.format_paint, + Icons.format_quote, + Icons.format_shapes, + Icons.format_size, + Icons.format_strikethrough, + Icons.format_textdirection_l_to_r, + Icons.format_textdirection_r_to_l, + Icons.format_underlined, + Icons.forum, + Icons.forward, + Icons.forward_10, + Icons.forward_30, + Icons.forward_5, + Icons.free_breakfast, + Icons.fullscreen, + Icons.fullscreen_exit, + Icons.functions, + Icons.g_translate, + Icons.gamepad, + Icons.games, + Icons.gavel, + Icons.gesture, + Icons.get_app, + Icons.gif, + Icons.golf_course, + Icons.gps_fixed, + Icons.gps_not_fixed, + Icons.gps_off, + Icons.grade, + Icons.gradient, + Icons.grain, + Icons.graphic_eq, + Icons.grid_off, + Icons.grid_on, + Icons.group, + Icons.group_add, + Icons.group_work, + Icons.hd, + Icons.hdr_off, + Icons.hdr_on, + Icons.hdr_strong, + Icons.hdr_weak, + Icons.headset, + Icons.headset_mic, + Icons.headset_off, + Icons.healing, + Icons.hearing, + Icons.help, + Icons.help_outline, + Icons.high_quality, + Icons.highlight, + Icons.highlight_off, + Icons.history, + Icons.home, + Icons.hot_tub, + Icons.hotel, + Icons.hourglass_empty, + Icons.hourglass_full, + Icons.http, + Icons.https, + Icons.image, + Icons.image_aspect_ratio, + Icons.import_contacts, + Icons.import_export, + Icons.important_devices, + Icons.inbox, + Icons.indeterminate_check_box, + Icons.info, + Icons.info_outline, + Icons.input, + Icons.insert_chart, + Icons.insert_comment, + Icons.insert_drive_file, + Icons.insert_emoticon, + Icons.insert_invitation, + Icons.insert_link, + Icons.insert_photo, + Icons.invert_colors, + Icons.invert_colors_off, + Icons.iso, + Icons.keyboard, + Icons.keyboard_arrow_down, + Icons.keyboard_arrow_left, + Icons.keyboard_arrow_right, + Icons.keyboard_arrow_up, + Icons.keyboard_backspace, + Icons.keyboard_capslock, + Icons.keyboard_hide, + Icons.keyboard_return, + Icons.keyboard_tab, + Icons.keyboard_voice, + Icons.kitchen, + Icons.label, + Icons.label_important, + Icons.label_outline, + Icons.landscape, + Icons.language, + Icons.laptop, + Icons.laptop_chromebook, + Icons.laptop_mac, + Icons.laptop_windows, + Icons.last_page, + Icons.launch, + Icons.layers, + Icons.layers_clear, + Icons.leak_add, + Icons.leak_remove, + Icons.lens, + Icons.library_add, + Icons.library_books, + Icons.library_music, + Icons.lightbulb_outline, + Icons.line_style, + Icons.line_weight, + Icons.linear_scale, + Icons.link, + Icons.link_off, + Icons.linked_camera, + Icons.list, + Icons.live_help, + Icons.live_tv, + Icons.local_activity, + Icons.local_airport, + Icons.local_atm, + Icons.local_bar, + Icons.local_cafe, + Icons.local_car_wash, + Icons.local_convenience_store, + Icons.local_dining, + Icons.local_drink, + Icons.local_florist, + Icons.local_gas_station, + Icons.local_grocery_store, + Icons.local_hospital, + Icons.local_hotel, + Icons.local_laundry_service, + Icons.local_library, + Icons.local_mall, + Icons.local_movies, + Icons.local_offer, + Icons.local_parking, + Icons.local_pharmacy, + Icons.local_phone, + Icons.local_pizza, + Icons.local_play, + Icons.local_post_office, + Icons.local_printshop, + Icons.local_see, + Icons.local_shipping, + Icons.local_taxi, + Icons.location_city, + Icons.location_disabled, + Icons.location_off, + Icons.location_on, + Icons.location_searching, + Icons.lock, + Icons.lock_open, + Icons.lock_outline, + Icons.looks, + Icons.looks_3, + Icons.looks_4, + Icons.looks_5, + Icons.looks_6, + Icons.looks_one, + Icons.looks_two, + Icons.loop, + Icons.loupe, + Icons.low_priority, + Icons.loyalty, + Icons.mail, + Icons.mail_outline, + Icons.map, + Icons.markunread, + Icons.markunread_mailbox, + Icons.maximize, + Icons.memory, + Icons.menu, + Icons.merge_type, + Icons.message, + Icons.mic, + Icons.mic_none, + Icons.mic_off, + Icons.minimize, + Icons.missed_video_call, + Icons.mms, + Icons.mobile_screen_share, + Icons.mode_comment, + Icons.mode_edit, + Icons.monetization_on, + Icons.money_off, + Icons.monochrome_photos, + Icons.mood, + Icons.mood_bad, + Icons.more, + Icons.more_horiz, + Icons.more_vert, + Icons.motorcycle, + Icons.mouse, + Icons.move_to_inbox, + Icons.movie, + Icons.movie_creation, + Icons.movie_filter, + Icons.multiline_chart, + Icons.music_note, + Icons.music_video, + Icons.my_location, + Icons.nature, + Icons.nature_people, + Icons.navigate_before, + Icons.navigate_next, + Icons.navigation, + Icons.near_me, + Icons.network_cell, + Icons.network_check, + Icons.network_locked, + Icons.network_wifi, + Icons.new_releases, + Icons.next_week, + Icons.nfc, + Icons.no_encryption, + Icons.no_sim, + Icons.not_interested, + Icons.not_listed_location, + Icons.note, + Icons.note_add, + Icons.notification_important, + Icons.notifications, + Icons.notifications_active, + Icons.notifications_none, + Icons.notifications_off, + Icons.notifications_paused, + Icons.offline_bolt, + Icons.offline_pin, + Icons.ondemand_video, + Icons.opacity, + Icons.open_in_browser, + Icons.open_in_new, + Icons.open_with, + Icons.outlined_flag, + Icons.pages, + Icons.pageview, + Icons.palette, + Icons.pan_tool, + Icons.panorama, + Icons.panorama_fish_eye, + Icons.panorama_horizontal, + Icons.panorama_vertical, + Icons.panorama_wide_angle, + Icons.party_mode, + Icons.pause, + Icons.pause_circle_filled, + Icons.pause_circle_outline, + Icons.payment, + Icons.people, + Icons.people_outline, + Icons.perm_camera_mic, + Icons.perm_contact_calendar, + Icons.perm_data_setting, + Icons.perm_device_information, + Icons.perm_identity, + Icons.perm_media, + Icons.perm_phone_msg, + Icons.perm_scan_wifi, + Icons.person, + Icons.person_add, + Icons.person_outline, + Icons.person_pin, + Icons.person_pin_circle, + Icons.personal_video, + Icons.pets, + Icons.phone, + Icons.phone_android, + Icons.phone_bluetooth_speaker, + Icons.phone_forwarded, + Icons.phone_in_talk, + Icons.phone_iphone, + Icons.phone_locked, + Icons.phone_missed, + Icons.phone_paused, + Icons.phonelink, + Icons.phonelink_erase, + Icons.phonelink_lock, + Icons.phonelink_off, + Icons.phonelink_ring, + Icons.phonelink_setup, + Icons.photo, + Icons.photo_album, + Icons.photo_camera, + Icons.photo_filter, + Icons.photo_library, + Icons.photo_size_select_actual, + Icons.photo_size_select_large, + Icons.photo_size_select_small, + Icons.picture_as_pdf, + Icons.picture_in_picture, + Icons.picture_in_picture_alt, + Icons.pie_chart, + Icons.pie_chart_outlined, + Icons.pin_drop, + Icons.place, + Icons.play_arrow, + Icons.play_circle_filled, + Icons.play_circle_outline, + Icons.play_for_work, + Icons.playlist_add, + Icons.playlist_add_check, + Icons.playlist_play, + Icons.plus_one, + Icons.poll, + Icons.polymer, + Icons.pool, + Icons.portable_wifi_off, + Icons.portrait, + Icons.power, + Icons.power_input, + Icons.power_settings_new, + Icons.pregnant_woman, + Icons.present_to_all, + Icons.print, + Icons.priority_high, + Icons.public, + Icons.publish, + Icons.query_builder, + Icons.question_answer, + Icons.queue, + Icons.queue_music, + Icons.queue_play_next, + Icons.radio, + Icons.radio_button_checked, + Icons.radio_button_unchecked, + Icons.rate_review, + Icons.receipt, + Icons.recent_actors, + Icons.record_voice_over, + Icons.redeem, + Icons.redo, + Icons.refresh, + Icons.remove, + Icons.remove_circle, + Icons.remove_circle_outline, + Icons.remove_from_queue, + Icons.remove_red_eye, + Icons.remove_shopping_cart, + Icons.reorder, + Icons.repeat, + Icons.repeat_one, + Icons.replay, + Icons.replay_10, + Icons.replay_30, + Icons.replay_5, + Icons.reply, + Icons.reply_all, + Icons.report, + Icons.report_off, + Icons.report_problem, + Icons.restaurant, + Icons.restaurant_menu, + Icons.restore, + Icons.restore_from_trash, + Icons.restore_page, + Icons.ring_volume, + Icons.room, + Icons.room_service, + Icons.rotate_90_degrees_ccw, + Icons.rotate_left, + Icons.rotate_right, + Icons.rounded_corner, + Icons.router, + Icons.rowing, + Icons.rss_feed, + Icons.rv_hookup, + Icons.satellite, + Icons.save, + Icons.save_alt, + Icons.scanner, + Icons.scatter_plot, + Icons.schedule, + Icons.school, + Icons.score, + Icons.screen_lock_landscape, + Icons.screen_lock_portrait, + Icons.screen_lock_rotation, + Icons.screen_rotation, + Icons.screen_share, + Icons.sd_card, + Icons.sd_storage, + Icons.search, + Icons.security, + Icons.select_all, + Icons.send, + Icons.sentiment_dissatisfied, + Icons.sentiment_neutral, + Icons.sentiment_satisfied, + Icons.sentiment_very_dissatisfied, + Icons.sentiment_very_satisfied, + Icons.settings, + Icons.settings_applications, + Icons.settings_backup_restore, + Icons.settings_bluetooth, + Icons.settings_brightness, + Icons.settings_cell, + Icons.settings_ethernet, + Icons.settings_input_antenna, + Icons.settings_input_component, + Icons.settings_input_composite, + Icons.settings_input_hdmi, + Icons.settings_input_svideo, + Icons.settings_overscan, + Icons.settings_phone, + Icons.settings_power, + Icons.settings_remote, + Icons.settings_system_daydream, + Icons.settings_voice, + Icons.share, + Icons.shop, + Icons.shop_two, + Icons.shopping_basket, + Icons.shopping_cart, + Icons.short_text, + Icons.show_chart, + Icons.shuffle, + Icons.shutter_speed, + Icons.signal_cellular_4_bar, + Icons.signal_cellular_connected_no_internet_4_bar, + Icons.signal_cellular_no_sim, + Icons.signal_cellular_null, + Icons.signal_cellular_off, + Icons.signal_wifi_4_bar, + Icons.signal_wifi_4_bar_lock, + Icons.signal_wifi_off, + Icons.sim_card, + Icons.sim_card_alert, + Icons.skip_next, + Icons.skip_previous, + Icons.slideshow, + Icons.slow_motion_video, + Icons.smartphone, + Icons.smoke_free, + Icons.smoking_rooms, + Icons.sms, + Icons.sms_failed, + Icons.snooze, + Icons.sort, + Icons.sort_by_alpha, + Icons.spa, + Icons.space_bar, + Icons.speaker, + Icons.speaker_group, + Icons.speaker_notes, + Icons.speaker_notes_off, + Icons.speaker_phone, + Icons.spellcheck, + Icons.star, + Icons.star_border, + Icons.star_half, + Icons.stars, + Icons.stay_current_landscape, + Icons.stay_current_portrait, + Icons.stay_primary_landscape, + Icons.stay_primary_portrait, + Icons.stop, + Icons.stop_screen_share, + Icons.storage, + Icons.store, + Icons.store_mall_directory, + Icons.straighten, + Icons.streetview, + Icons.strikethrough_s, + Icons.style, + Icons.subdirectory_arrow_left, + Icons.subdirectory_arrow_right, + Icons.subject, + Icons.subscriptions, + Icons.subtitles, + Icons.subway, + Icons.supervised_user_circle, + Icons.supervisor_account, + Icons.surround_sound, + Icons.swap_calls, + Icons.swap_horiz, + Icons.swap_horizontal_circle, + Icons.swap_vert, + Icons.swap_vertical_circle, + Icons.switch_camera, + Icons.switch_video, + Icons.sync, + Icons.sync_disabled, + Icons.sync_problem, + Icons.system_update, + Icons.system_update_alt, + Icons.tab, + Icons.tab_unselected, + Icons.table_chart, + Icons.tablet, + Icons.tablet_android, + Icons.tablet_mac, + Icons.tag_faces, + Icons.tap_and_play, + Icons.terrain, + Icons.text_fields, + Icons.text_format, + Icons.text_rotate_up, + Icons.text_rotate_vertical, + Icons.text_rotation_angledown, + Icons.text_rotation_angleup, + Icons.text_rotation_down, + Icons.text_rotation_none, + Icons.textsms, + Icons.texture, + Icons.theaters, + Icons.thumb_down, + Icons.thumb_up, + Icons.thumbs_up_down, + Icons.time_to_leave, + Icons.timelapse, + Icons.timeline, + Icons.timer, + Icons.timer_10, + Icons.timer_3, + Icons.timer_off, + Icons.title, + Icons.toc, + Icons.today, + Icons.toll, + Icons.tonality, + Icons.touch_app, + Icons.toys, + Icons.track_changes, + Icons.traffic, + Icons.train, + Icons.tram, + Icons.transfer_within_a_station, + Icons.transform, + Icons.transit_enterexit, + Icons.translate, + Icons.trending_down, + Icons.trending_flat, + Icons.trending_up, + Icons.trip_origin, + Icons.tune, + Icons.turned_in, + Icons.turned_in_not, + Icons.tv, + Icons.unarchive, + Icons.undo, + Icons.unfold_less, + Icons.unfold_more, + Icons.update, + Icons.usb, + Icons.verified_user, + Icons.vertical_align_bottom, + Icons.vertical_align_center, + Icons.vertical_align_top, + Icons.vibration, + Icons.video_call, + Icons.video_label, + Icons.video_library, + Icons.videocam, + Icons.videocam_off, + Icons.videogame_asset, + Icons.view_agenda, + Icons.view_array, + Icons.view_carousel, + Icons.view_column, + Icons.view_comfy, + Icons.view_compact, + Icons.view_day, + Icons.view_headline, + Icons.view_list, + Icons.view_module, + Icons.view_quilt, + Icons.view_stream, + Icons.view_week, + Icons.vignette, + Icons.visibility, + Icons.visibility_off, + Icons.voice_chat, + Icons.voicemail, + Icons.volume_down, + Icons.volume_mute, + Icons.volume_off, + Icons.volume_up, + Icons.vpn_key, + Icons.vpn_lock, + Icons.wallpaper, + Icons.warning, + Icons.watch, + Icons.watch_later, + Icons.wb_auto, + Icons.wb_cloudy, + Icons.wb_incandescent, + Icons.wb_iridescent, + Icons.wb_sunny, + Icons.wc, + Icons.web, + Icons.web_asset, + Icons.weekend, + Icons.whatshot, + Icons.widgets, + Icons.wifi, + Icons.wifi_lock, + Icons.wifi_tethering, + Icons.work, + Icons.wrap_text, + Icons.youtube_searched_for, + Icons.zoom_in, + Icons.zoom_out, + Icons.zoom_out_map + ]; + + List iconNames = [ + "threesixty", + "threed_rotation", + "four_k", + "ac_unit", + "access_alarm", + "access_alarms", + "access_time", + "accessibility", + "accessibility_new", + "accessible", + "accessible_forward", + "account_balance", + "account_balance_wallet", + "account_box", + "account_circle", + "adb", + "add", + "add_a_photo", + "add_alarm", + "add_alert", + "add_box", + "add_call", + "add_circle", + "add_circle_outline", + "add_comment", + "add_location", + "add_photo_alternate", + "add_shopping_cart", + "add_to_home_screen", + "add_to_photos", + "add_to_queue", + "adjust", + "airline_seat_flat", + "airline_seat_flat_angled", + "airline_seat_individual_suite", + "airline_seat_legroom_extra", + "airline_seat_legroom_normal", + "airline_seat_legroom_reduced", + "airline_seat_recline_extra", + "airline_seat_recline_normal", + "airplanemode_active", + "airplanemode_inactive", + "airplay", + "airport_shuttle", + "alarm", + "alarm_add", + "alarm_off", + "alarm_on", + "album", + "all_inclusive", + "all_out", + "alternate_email", + "android", + "announcement", + "apps", + "archive", + "arrow_back", + "arrow_back_ios", + "arrow_downward", + "arrow_drop_down", + "arrow_drop_down_circle", + "arrow_drop_up", + "arrow_forward", + "arrow_forward_ios", + "arrow_left", + "arrow_right", + "arrow_upward", + "art_track", + "aspect_ratio", + "assessment", + "assignment", + "assignment_ind", + "assignment_late", + "assignment_return", + "assignment_returned", + "assignment_turned_in", + "assistant", + "assistant_photo", + "atm", + "attach_file", + "attach_money", + "attachment", + "audiotrack", + "autorenew", + "av_timer", + "backspace", + "backup", + "battery_alert", + "battery_charging_full", + "battery_full", + "battery_std", + "battery_unknown", + "beach_access", + "beenhere", + "block", + "bluetooth", + "bluetooth_audio", + "bluetooth_connected", + "bluetooth_disabled", + "bluetooth_searching", + "blur_circular", + "blur_linear", + "blur_off", + "blur_on", + "book", + "bookmark", + "bookmark_border", + "border_all", + "border_bottom", + "border_clear", + "border_color", + "border_horizontal", + "border_inner", + "border_left", + "border_outer", + "border_right", + "border_style", + "border_top", + "border_vertical", + "branding_watermark", + "brightness_1", + "brightness_2", + "brightness_3", + "brightness_4", + "brightness_5", + "brightness_6", + "brightness_7", + "brightness_auto", + "brightness_high", + "brightness_low", + "brightness_medium", + "broken_image", + "brush", + "bubble_chart", + "bug_report", + "build", + "burst_mode", + "business", + "business_center", + "cached", + "cake", + "calendar_today", + "calendar_view_day", + "call", + "call_end", + "call_made", + "call_merge", + "call_missed", + "call_missed_outgoing", + "call_received", + "call_split", + "call_to_action", + "camera", + "camera_alt", + "camera_enhance", + "camera_front", + "camera_rear", + "camera_roll", + "cancel", + "card_giftcard", + "card_membership", + "card_travel", + "casino", + "cast", + "cast_connected", + "category", + "center_focus_strong", + "center_focus_weak", + "change_history", + "chat", + "chat_bubble", + "chat_bubble_outline", + "check", + "check_box", + "check_box_outline_blank", + "check_circle", + "check_circle_outline", + "chevron_left", + "chevron_right", + "child_care", + "child_friendly", + "chrome_reader_mode", + "class_", + "clear", + "clear_all", + "close", + "closed_caption", + "cloud", + "cloud_circle", + "cloud_done", + "cloud_download", + "cloud_off", + "cloud_queue", + "cloud_upload", + "code", + "collections", + "collections_bookmark", + "color_lens", + "colorize", + "comment", + "compare", + "compare_arrows", + "computer", + "confirmation_number", + "contact_mail", + "contact_phone", + "contacts", + "content_copy", + "content_cut", + "content_paste", + "control_point", + "control_point_duplicate", + "copyright", + "create", + "create_new_folder", + "credit_card", + "crop", + "crop_16_9", + "crop_3_2", + "crop_5_4", + "crop_7_5", + "crop_din", + "crop_free", + "crop_landscape", + "crop_original", + "crop_portrait", + "crop_rotate", + "crop_square", + "dashboard", + "data_usage", + "date_range", + "dehaze", + "delete", + "delete_forever", + "delete_outline", + "delete_sweep", + "departure_board", + "description", + "desktop_mac", + "desktop_windows", + "details", + "developer_board", + "developer_mode", + "device_hub", + "device_unknown", + "devices", + "devices_other", + "dialer_sip", + "dialpad", + "directions", + "directions_bike", + "directions_boat", + "directions_bus", + "directions_car", + "directions_railway", + "directions_run", + "directions_subway", + "directions_transit", + "directions_walk", + "disc_full", + "dns", + "do_not_disturb", + "do_not_disturb_alt", + "do_not_disturb_off", + "do_not_disturb_on", + "dock", + "domain", + "done", + "done_all", + "done_outline", + "donut_large", + "donut_small", + "drafts", + "drag_handle", + "drive_eta", + "dvr", + "edit", + "edit_attributes", + "edit_location", + "eject", + "email", + "enhanced_encryption", + "equalizer", + "error", + "error_outline", + "euro_symbol", + "ev_station", + "event", + "event_available", + "event_busy", + "event_note", + "event_seat", + "exit_to_app", + "expand_less", + "expand_more", + "explicit", + "explore", + "exposure", + "exposure_neg_1", + "exposure_neg_2", + "exposure_plus_1", + "exposure_plus_2", + "exposure_zero", + "extension", + "face", + "fast_forward", + "fast_rewind", + "fastfood", + "favorite", + "favorite_border", + "featured_play_list", + "featured_video", + "feedback", + "fiber_dvr", + "fiber_manual_record", + "fiber_new", + "fiber_pin", + "fiber_smart_record", + "file_download", + "file_upload", + "filter", + "filter_1", + "filter_2", + "filter_3", + "filter_4", + "filter_5", + "filter_6", + "filter_7", + "filter_8", + "filter_9", + "filter_9_plus", + "filter_b_and_w", + "filter_center_focus", + "filter_drama", + "filter_frames", + "filter_hdr", + "filter_list", + "filter_none", + "filter_tilt_shift", + "filter_vintage", + "find_in_page", + "find_replace", + "fingerprint", + "first_page", + "fitness_center", + "flag", + "flare", + "flash_auto", + "flash_off", + "flash_on", + "flight", + "flight_land", + "flight_takeoff", + "flip", + "flip_to_back", + "flip_to_front", + "folder", + "folder_open", + "folder_shared", + "folder_special", + "font_download", + "format_align_center", + "format_align_justify", + "format_align_left", + "format_align_right", + "format_bold", + "format_clear", + "format_color_fill", + "format_color_reset", + "format_color_text", + "format_indent_decrease", + "format_indent_increase", + "format_italic", + "format_line_spacing", + "format_list_bulleted", + "format_list_numbered", + "format_list_numbered_rtl", + "format_paint", + "format_quote", + "format_shapes", + "format_size", + "format_strikethrough", + "format_textdirection_l_to_r", + "format_textdirection_r_to_l", + "format_underlined", + "forum", + "forward", + "forward_10", + "forward_30", + "forward_5", + "free_breakfast", + "fullscreen", + "fullscreen_exit", + "functions", + "g_translate", + "gamepad", + "games", + "gavel", + "gesture", + "get_app", + "gif", + "golf_course", + "gps_fixed", + "gps_not_fixed", + "gps_off", + "grade", + "gradient", + "grain", + "graphic_eq", + "grid_off", + "grid_on", + "group", + "group_add", + "group_work", + "hd", + "hdr_off", + "hdr_on", + "hdr_strong", + "hdr_weak", + "headset", + "headset_mic", + "headset_off", + "healing", + "hearing", + "help", + "help_outline", + "high_quality", + "highlight", + "highlight_off", + "history", + "home", + "hot_tub", + "hotel", + "hourglass_empty", + "hourglass_full", + "http", + "https", + "image", + "image_aspect_ratio", + "import_contacts", + "import_export", + "important_devices", + "inbox", + "indeterminate_check_box", + "info", + "info_outline", + "input", + "insert_chart", + "insert_comment", + "insert_drive_file", + "insert_emoticon", + "insert_invitation", + "insert_link", + "insert_photo", + "invert_colors", + "invert_colors_off", + "iso", + "keyboard", + "keyboard_arrow_down", + "keyboard_arrow_left", + "keyboard_arrow_right", + "keyboard_arrow_up", + "keyboard_backspace", + "keyboard_capslock", + "keyboard_hide", + "keyboard_return", + "keyboard_tab", + "keyboard_voice", + "kitchen", + "label", + "label_important", + "label_outline", + "landscape", + "language", + "laptop", + "laptop_chromebook", + "laptop_mac", + "laptop_windows", + "last_page", + "launch", + "layers", + "layers_clear", + "leak_add", + "leak_remove", + "lens", + "library_add", + "library_books", + "library_music", + "lightbulb_outline", + "line_style", + "line_weight", + "linear_scale", + "link", + "link_off", + "linked_camera", + "list", + "live_help", + "live_tv", + "local_activity", + "local_airport", + "local_atm", + "local_bar", + "local_cafe", + "local_car_wash", + "local_convenience_store", + "local_dining", + "local_drink", + "local_florist", + "local_gas_station", + "local_grocery_store", + "local_hospital", + "local_hotel", + "local_laundry_service", + "local_library", + "local_mall", + "local_movies", + "local_offer", + "local_parking", + "local_pharmacy", + "local_phone", + "local_pizza", + "local_play", + "local_post_office", + "local_printshop", + "local_see", + "local_shipping", + "local_taxi", + "location_city", + "location_disabled", + "location_off", + "location_on", + "location_searching", + "lock", + "lock_open", + "lock_outline", + "looks", + "looks_3", + "looks_4", + "looks_5", + "looks_6", + "looks_one", + "looks_two", + "loop", + "loupe", + "low_priority", + "loyalty", + "mail", + "mail_outline", + "map", + "markunread", + "markunread_mailbox", + "maximize", + "memory", + "menu", + "merge_type", + "message", + "mic", + "mic_none", + "mic_off", + "minimize", + "missed_video_call", + "mms", + "mobile_screen_share", + "mode_comment", + "mode_edit", + "monetization_on", + "money_off", + "monochrome_photos", + "mood", + "mood_bad", + "more", + "more_horiz", + "more_vert", + "motorcycle", + "mouse", + "move_to_inbox", + "movie", + "movie_creation", + "movie_filter", + "multiline_chart", + "music_note", + "music_video", + "my_location", + "nature", + "nature_people", + "navigate_before", + "navigate_next", + "navigation", + "near_me", + "network_cell", + "network_check", + "network_locked", + "network_wifi", + "new_releases", + "next_week", + "nfc", + "no_encryption", + "no_sim", + "not_interested", + "not_listed_location", + "note", + "note_add", + "notification_important", + "notifications", + "notifications_active", + "notifications_none", + "notifications_off", + "notifications_paused", + "offline_bolt", + "offline_pin", + "ondemand_video", + "opacity", + "open_in_browser", + "open_in_new", + "open_with", + "outlined_flag", + "pages", + "pageview", + "palette", + "pan_tool", + "panorama", + "panorama_fish_eye", + "panorama_horizontal", + "panorama_vertical", + "panorama_wide_angle", + "party_mode", + "pause", + "pause_circle_filled", + "pause_circle_outline", + "payment", + "people", + "people_outline", + "perm_camera_mic", + "perm_contact_calendar", + "perm_data_setting", + "perm_device_information", + "perm_identity", + "perm_media", + "perm_phone_msg", + "perm_scan_wifi", + "person", + "person_add", + "person_outline", + "person_pin", + "person_pin_circle", + "personal_video", + "pets", + "phone", + "phone_android", + "phone_bluetooth_speaker", + "phone_forwarded", + "phone_in_talk", + "phone_iphone", + "phone_locked", + "phone_missed", + "phone_paused", + "phonelink", + "phonelink_erase", + "phonelink_lock", + "phonelink_off", + "phonelink_ring", + "phonelink_setup", + "photo", + "photo_album", + "photo_camera", + "photo_filter", + "photo_library", + "photo_size_select_actual", + "photo_size_select_large", + "photo_size_select_small", + "picture_as_pdf", + "picture_in_picture", + "picture_in_picture_alt", + "pie_chart", + "pie_chart_outlined", + "pin_drop", + "place", + "play_arrow", + "play_circle_filled", + "play_circle_outline", + "play_for_work", + "playlist_add", + "playlist_add_check", + "playlist_play", + "plus_one", + "poll", + "polymer", + "pool", + "portable_wifi_off", + "portrait", + "power", + "power_input", + "power_settings_new", + "pregnant_woman", + "present_to_all", + "print", + "priority_high", + "public", + "publish", + "query_builder", + "question_answer", + "queue", + "queue_music", + "queue_play_next", + "radio", + "radio_button_checked", + "radio_button_unchecked", + "rate_review", + "receipt", + "recent_actors", + "record_voice_over", + "redeem", + "redo", + "refresh", + "remove", + "remove_circle", + "remove_circle_outline", + "remove_from_queue", + "remove_red_eye", + "remove_shopping_cart", + "reorder", + "repeat", + "repeat_one", + "replay", + "replay_10", + "replay_30", + "replay_5", + "reply", + "reply_all", + "report", + "report_off", + "report_problem", + "restaurant", + "restaurant_menu", + "restore", + "restore_from_trash", + "restore_page", + "ring_volume", + "room", + "room_service", + "rotate_90_degrees_ccw", + "rotate_left", + "rotate_right", + "rounded_corner", + "router", + "rowing", + "rss_feed", + "rv_hookup", + "satellite", + "save", + "save_alt", + "scanner", + "scatter_plot", + "schedule", + "school", + "score", + "screen_lock_landscape", + "screen_lock_portrait", + "screen_lock_rotation", + "screen_rotation", + "screen_share", + "sd_card", + "sd_storage", + "search", + "security", + "select_all", + "send", + "sentiment_dissatisfied", + "sentiment_neutral", + "sentiment_satisfied", + "sentiment_very_dissatisfied", + "sentiment_very_satisfied", + "settings", + "settings_applications", + "settings_backup_restore", + "settings_bluetooth", + "settings_brightness", + "settings_cell", + "settings_ethernet", + "settings_input_antenna", + "settings_input_component", + "settings_input_composite", + "settings_input_hdmi", + "settings_input_svideo", + "settings_overscan", + "settings_phone", + "settings_power", + "settings_remote", + "settings_system_daydream", + "settings_voice", + "share", + "shop", + "shop_two", + "shopping_basket", + "shopping_cart", + "short_text", + "show_chart", + "shuffle", + "shutter_speed", + "signal_cellular_4_bar", + "signal_cellular_connected_no_internet_4_bar", + "signal_cellular_no_sim", + "signal_cellular_null", + "signal_cellular_off", + "signal_wifi_4_bar", + "signal_wifi_4_bar_lock", + "signal_wifi_off", + "sim_card", + "sim_card_alert", + "skip_next", + "skip_previous", + "slideshow", + "slow_motion_video", + "smartphone", + "smoke_free", + "smoking_rooms", + "sms", + "sms_failed", + "snooze", + "sort", + "sort_by_alpha", + "spa", + "space_bar", + "speaker", + "speaker_group", + "speaker_notes", + "speaker_notes_off", + "speaker_phone", + "spellcheck", + "star", + "star_border", + "star_half", + "stars", + "stay_current_landscape", + "stay_current_portrait", + "stay_primary_landscape", + "stay_primary_portrait", + "stop", + "stop_screen_share", + "storage", + "store", + "store_mall_directory", + "straighten", + "streetview", + "strikethrough_s", + "style", + "subdirectory_arrow_left", + "subdirectory_arrow_right", + "subject", + "subscriptions", + "subtitles", + "subway", + "supervised_user_circle", + "supervisor_account", + "surround_sound", + "swap_calls", + "swap_horiz", + "swap_horizontal_circle", + "swap_vert", + "swap_vertical_circle", + "switch_camera", + "switch_video", + "sync", + "sync_disabled", + "sync_problem", + "system_update", + "system_update_alt", + "tab", + "tab_unselected", + "table_chart", + "tablet", + "tablet_android", + "tablet_mac", + "tag_faces", + "tap_and_play", + "terrain", + "text_fields", + "text_format", + "text_rotate_up", + "text_rotate_vertical", + "text_rotation_angledown", + "text_rotation_angleup", + "text_rotation_down", + "text_rotation_none", + "textsms", + "texture", + "theaters", + "thumb_down", + "thumb_up", + "thumbs_up_down", + "time_to_leave", + "timelapse", + "timeline", + "timer", + "timer_10", + "timer_3", + "timer_off", + "title", + "toc", + "today", + "toll", + "tonality", + "touch_app", + "toys", + "track_changes", + "traffic", + "train", + "tram", + "transfer_within_a_station", + "transform", + "transit_enterexit", + "translate", + "trending_down", + "trending_flat", + "trending_up", + "trip_origin", + "tune", + "turned_in", + "turned_in_not", + "tv", + "unarchive", + "undo", + "unfold_less", + "unfold_more", + "update", + "usb", + "verified_user", + "vertical_align_bottom", + "vertical_align_center", + "vertical_align_top", + "vibration", + "video_call", + "video_label", + "video_library", + "videocam", + "videocam_off", + "videogame_asset", + "view_agenda", + "view_array", + "view_carousel", + "view_column", + "view_comfy", + "view_compact", + "view_day", + "view_headline", + "view_list", + "view_module", + "view_quilt", + "view_stream", + "view_week", + "vignette", + "visibility", + "visibility_off", + "voice_chat", + "voicemail", + "volume_down", + "volume_mute", + "volume_off", + "volume_up", + "vpn_key", + "vpn_lock", + "wallpaper", + "warning", + "watch", + "watch_later", + "wb_auto", + "wb_cloudy", + "wb_incandescent", + "wb_iridescent", + "wb_sunny", + "wc", + "web", + "web_asset", + "weekend", + "whatshot", + "widgets", + "wifi", + "wifi_lock", + "wifi_tethering", + "work", + "wrap_text", + "youtube_searched_for", + "zoom_in", + "zoom_out", + "zoom_out_map", + ]; +} \ No newline at end of file diff --git a/local_json/icon_json.json b/local_json/icon_json.json index 8fc85e4..e4c7760 100644 --- a/local_json/icon_json.json +++ b/local_json/icon_json.json @@ -3,5910 +3,6895 @@ "codePoint": "58743", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "threesixty", "matchTextDirection": "false" }, { "codePoint": "59469", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "threed_rotation", "matchTextDirection": "false" }, { "codePoint": "57458", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "four_k", "matchTextDirection": "false" }, { "codePoint": "60219", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "ac_unit", "matchTextDirection": "false" }, { "codePoint": "57744", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "access_alarm", "matchTextDirection": "false" }, { "codePoint": "57745", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "access_alarms", "matchTextDirection": "false" }, { "codePoint": "57746", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "access_time", "matchTextDirection": "false" }, { "codePoint": "59470", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "accessibility", "matchTextDirection": "false" }, { "codePoint": "59692", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "accessibility_new", "matchTextDirection": "false" }, { "codePoint": "59668", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "accessible", "matchTextDirection": "false" }, { "codePoint": "59700", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "accessible_forward", "matchTextDirection": "false" }, { "codePoint": "59471", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "account_balance", "matchTextDirection": "false" }, { "codePoint": "59472", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "account_balance_wallet", "matchTextDirection": "false" }, { "codePoint": "59473", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "account_box", "matchTextDirection": "false" }, { "codePoint": "59475", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "account_circle", "matchTextDirection": "false" }, { "codePoint": "58894", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "adb", "matchTextDirection": "false" }, { "codePoint": "57669", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add", "matchTextDirection": "false" }, { "codePoint": "58425", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_a_photo", "matchTextDirection": "false" }, { "codePoint": "57747", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_alarm", "matchTextDirection": "false" }, { "codePoint": "57347", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_alert", "matchTextDirection": "false" }, { "codePoint": "57670", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_box", "matchTextDirection": "false" }, { "codePoint": "57576", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_call", "matchTextDirection": "false" }, { "codePoint": "57671", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_circle", "matchTextDirection": "false" }, { "codePoint": "57672", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_circle_outline", "matchTextDirection": "false" }, { "codePoint": "57958", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_comment", "matchTextDirection": "false" }, { "codePoint": "58727", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_location", "matchTextDirection": "false" }, { "codePoint": "58430", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_photo_alternate", "matchTextDirection": "false" }, { "codePoint": "59476", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_shopping_cart", "matchTextDirection": "false" }, { "codePoint": "57854", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_to_home_screen", "matchTextDirection": "false" }, { "codePoint": "58269", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_to_photos", "matchTextDirection": "false" }, { "codePoint": "57436", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "add_to_queue", "matchTextDirection": "false" }, { "codePoint": "58270", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "adjust", "matchTextDirection": "false" }, { "codePoint": "58928", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_flat", "matchTextDirection": "false" }, { "codePoint": "58929", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_flat_angled", "matchTextDirection": "false" }, { "codePoint": "58930", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_individual_suite", "matchTextDirection": "false" }, { "codePoint": "58931", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_legroom_extra", "matchTextDirection": "false" }, { "codePoint": "58932", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_legroom_normal", "matchTextDirection": "false" }, { "codePoint": "58933", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_legroom_reduced", "matchTextDirection": "false" }, { "codePoint": "58934", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_recline_extra", "matchTextDirection": "false" }, { "codePoint": "58935", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airline_seat_recline_normal", "matchTextDirection": "false" }, { "codePoint": "57749", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airplanemode_active", "matchTextDirection": "false" }, { "codePoint": "57748", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airplanemode_inactive", "matchTextDirection": "false" }, { "codePoint": "57429", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airplay", "matchTextDirection": "false" }, { "codePoint": "60220", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "airport_shuttle", "matchTextDirection": "false" }, { "codePoint": "59477", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "alarm", "matchTextDirection": "false" }, { "codePoint": "59478", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "alarm_add", "matchTextDirection": "false" }, { "codePoint": "59479", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "alarm_off", "matchTextDirection": "false" }, { "codePoint": "59480", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "alarm_on", "matchTextDirection": "false" }, { "codePoint": "57369", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "album", "matchTextDirection": "false" }, { "codePoint": "60221", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "all_inclusive", "matchTextDirection": "false" }, { "codePoint": "59659", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "all_out", "matchTextDirection": "false" }, { "codePoint": "57574", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "alternate_email", "matchTextDirection": "false" }, { "codePoint": "59481", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "android", "matchTextDirection": "false" }, { "codePoint": "59482", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "announcement", "matchTextDirection": "false" }, { "codePoint": "58819", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "apps", "matchTextDirection": "false" }, { "codePoint": "57673", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "archive", "matchTextDirection": "false" }, { "codePoint": "58820", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_back", "matchTextDirection": "true" }, { "codePoint": "58848", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_back_ios", "matchTextDirection": "true" }, { "codePoint": "58843", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_downward", "matchTextDirection": "false" }, { "codePoint": "58821", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_drop_down", "matchTextDirection": "false" }, { "codePoint": "58822", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_drop_down_circle", "matchTextDirection": "false" }, { "codePoint": "58823", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_drop_up", "matchTextDirection": "false" }, { "codePoint": "58824", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_forward", "matchTextDirection": "true" }, { "codePoint": "58849", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_forward_ios", "matchTextDirection": "true" }, { "codePoint": "58846", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_left", "matchTextDirection": "true" }, { "codePoint": "58847", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_right", "matchTextDirection": "true" }, { "codePoint": "58840", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "arrow_upward", "matchTextDirection": "false" }, { "codePoint": "57440", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "art_track", "matchTextDirection": "false" }, { "codePoint": "59483", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "aspect_ratio", "matchTextDirection": "false" }, { "codePoint": "59484", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assessment", "matchTextDirection": "false" }, { "codePoint": "59485", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assignment", "matchTextDirection": "true" }, { "codePoint": "59486", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assignment_ind", "matchTextDirection": "false" }, { "codePoint": "59487", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assignment_late", "matchTextDirection": "false" }, { "codePoint": "59488", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assignment_return", "matchTextDirection": "true" }, { "codePoint": "59489", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assignment_returned", "matchTextDirection": "false" }, { "codePoint": "59490", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assignment_turned_in", "matchTextDirection": "false" }, { "codePoint": "58271", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assistant", "matchTextDirection": "false" }, { "codePoint": "58272", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "assistant_photo", "matchTextDirection": "false" }, { "codePoint": "58739", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "atm", "matchTextDirection": "false" }, { "codePoint": "57894", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "attach_file", "matchTextDirection": "false" }, { "codePoint": "57895", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "attach_money", "matchTextDirection": "false" }, { "codePoint": "58044", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "attachment", "matchTextDirection": "false" }, { "codePoint": "58273", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "audiotrack", "matchTextDirection": "false" }, { "codePoint": "59491", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "autorenew", "matchTextDirection": "false" }, { "codePoint": "57371", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "av_timer", "matchTextDirection": "false" }, { "codePoint": "57674", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "backspace", "matchTextDirection": "true" }, { "codePoint": "59492", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "backup", "matchTextDirection": "false" }, { "codePoint": "57756", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "battery_alert", "matchTextDirection": "false" }, { "codePoint": "57763", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "battery_charging_full", "matchTextDirection": "false" }, { "codePoint": "57764", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "battery_full", "matchTextDirection": "false" }, { "codePoint": "57765", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "battery_std", "matchTextDirection": "false" }, { "codePoint": "57766", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "battery_unknown", "matchTextDirection": "true" }, { "codePoint": "60222", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "beach_access", "matchTextDirection": "false" }, { "codePoint": "58669", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "beenhere", "matchTextDirection": "false" }, { "codePoint": "57675", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "block", "matchTextDirection": "false" }, { "codePoint": "57767", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bluetooth", "matchTextDirection": "false" }, { "codePoint": "58895", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bluetooth_audio", "matchTextDirection": "false" }, { "codePoint": "57768", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bluetooth_connected", "matchTextDirection": "false" }, { "codePoint": "57769", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bluetooth_disabled", "matchTextDirection": "false" }, { "codePoint": "57770", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bluetooth_searching", "matchTextDirection": "false" }, { "codePoint": "58274", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "blur_circular", "matchTextDirection": "false" }, { "codePoint": "58275", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "blur_linear", "matchTextDirection": "false" }, { "codePoint": "58276", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "blur_off", "matchTextDirection": "false" }, { "codePoint": "58277", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "blur_on", "matchTextDirection": "false" }, { "codePoint": "59493", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "book", "matchTextDirection": "false" }, { "codePoint": "59494", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bookmark", "matchTextDirection": "false" }, { "codePoint": "59495", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bookmark_border", "matchTextDirection": "false" }, { "codePoint": "57896", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_all", "matchTextDirection": "false" }, { "codePoint": "57897", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_bottom", "matchTextDirection": "false" }, { "codePoint": "57898", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_clear", "matchTextDirection": "false" }, { "codePoint": "57899", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_color", "matchTextDirection": "false" }, { "codePoint": "57900", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_horizontal", "matchTextDirection": "false" }, { "codePoint": "57901", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_inner", "matchTextDirection": "false" }, { "codePoint": "57902", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_left", "matchTextDirection": "false" }, { "codePoint": "57903", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_outer", "matchTextDirection": "false" }, { "codePoint": "57904", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_right", "matchTextDirection": "false" }, { "codePoint": "57905", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_style", "matchTextDirection": "false" }, { "codePoint": "57906", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_top", "matchTextDirection": "false" }, { "codePoint": "57907", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "border_vertical", "matchTextDirection": "false" }, { "codePoint": "57451", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "branding_watermark", "matchTextDirection": "false" }, { "codePoint": "58278", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_1", "matchTextDirection": "false" }, { "codePoint": "58279", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_2", "matchTextDirection": "false" }, { "codePoint": "58280", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_3", "matchTextDirection": "false" }, { "codePoint": "58281", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_4", "matchTextDirection": "false" }, { "codePoint": "58282", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_5", "matchTextDirection": "false" }, { "codePoint": "58283", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_6", "matchTextDirection": "false" }, { "codePoint": "58284", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_7", "matchTextDirection": "false" }, { "codePoint": "57771", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_auto", "matchTextDirection": "false" }, { "codePoint": "57772", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_high", "matchTextDirection": "false" }, { "codePoint": "57773", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_low", "matchTextDirection": "false" }, { "codePoint": "57774", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brightness_medium", "matchTextDirection": "false" }, { "codePoint": "58285", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "broken_image", "matchTextDirection": "false" }, { "codePoint": "58286", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "brush", "matchTextDirection": "false" }, { "codePoint": "59101", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bubble_chart", "matchTextDirection": "false" }, { "codePoint": "59496", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "bug_report", "matchTextDirection": "false" }, { "codePoint": "59497", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "build", "matchTextDirection": "false" }, { "codePoint": "58428", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "burst_mode", "matchTextDirection": "false" }, { "codePoint": "57519", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "business", "matchTextDirection": "false" }, { "codePoint": "60223", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "business_center", "matchTextDirection": "false" }, { "codePoint": "59498", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cached", "matchTextDirection": "false" }, { "codePoint": "59369", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cake", "matchTextDirection": "false" }, { "codePoint": "59701", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "calendar_today", "matchTextDirection": "false" }, { "codePoint": "59702", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "calendar_view_day", "matchTextDirection": "false" }, { "codePoint": "57520", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call", "matchTextDirection": "false" }, { "codePoint": "57521", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_end", "matchTextDirection": "false" }, { "codePoint": "57522", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_made", "matchTextDirection": "true" }, { "codePoint": "57523", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_merge", "matchTextDirection": "true" }, { "codePoint": "57524", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_missed", "matchTextDirection": "true" }, { "codePoint": "57572", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_missed_outgoing", "matchTextDirection": "true" }, { "codePoint": "57525", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_received", "matchTextDirection": "true" }, { "codePoint": "57526", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_split", "matchTextDirection": "true" }, { "codePoint": "57452", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "call_to_action", "matchTextDirection": "false" }, { "codePoint": "58287", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "camera", "matchTextDirection": "false" }, { "codePoint": "58288", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "camera_alt", "matchTextDirection": "false" }, { "codePoint": "59644", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "camera_enhance", "matchTextDirection": "false" }, { "codePoint": "58289", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "camera_front", "matchTextDirection": "false" }, { "codePoint": "58290", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "camera_rear", "matchTextDirection": "false" }, { "codePoint": "58291", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "camera_roll", "matchTextDirection": "false" }, { "codePoint": "58825", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cancel", "matchTextDirection": "false" }, { "codePoint": "59638", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "card_giftcard", "matchTextDirection": "false" }, { "codePoint": "59639", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "card_membership", "matchTextDirection": "false" }, { "codePoint": "59640", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "card_travel", "matchTextDirection": "false" }, { "codePoint": "60224", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "casino", "matchTextDirection": "false" }, { "codePoint": "58119", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cast", "matchTextDirection": "false" }, { "codePoint": "58120", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cast_connected", "matchTextDirection": "false" }, { "codePoint": "58740", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "category", "matchTextDirection": "false" }, { "codePoint": "58292", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "center_focus_strong", "matchTextDirection": "false" }, { "codePoint": "58293", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "center_focus_weak", "matchTextDirection": "false" }, { "codePoint": "59499", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "change_history", "matchTextDirection": "false" }, { "codePoint": "57527", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "chat", "matchTextDirection": "false" }, { "codePoint": "57546", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "chat_bubble", "matchTextDirection": "false" }, { "codePoint": "57547", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "chat_bubble_outline", "matchTextDirection": "false" }, { "codePoint": "58826", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "check", "matchTextDirection": "false" }, { "codePoint": "59444", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "check_box", "matchTextDirection": "false" }, { "codePoint": "59445", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "check_box_outline_blank", "matchTextDirection": "false" }, { "codePoint": "59500", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "check_circle", "matchTextDirection": "false" }, { "codePoint": "59693", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "check_circle_outline", "matchTextDirection": "false" }, { "codePoint": "58827", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "chevron_left", "matchTextDirection": "true" }, { "codePoint": "58828", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "chevron_right", "matchTextDirection": "true" }, { "codePoint": "60225", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "child_care", "matchTextDirection": "false" }, { "codePoint": "60226", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "child_friendly", "matchTextDirection": "false" }, { "codePoint": "59501", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "chrome_reader_mode", "matchTextDirection": "true" }, { "codePoint": "59502", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "class_", "matchTextDirection": "false" }, { "codePoint": "57676", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "clear", "matchTextDirection": "false" }, { "codePoint": "57528", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "clear_all", "matchTextDirection": "false" }, { "codePoint": "58829", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "close", "matchTextDirection": "false" }, { "codePoint": "57372", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "closed_caption", "matchTextDirection": "false" }, { "codePoint": "58045", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud", "matchTextDirection": "false" }, { "codePoint": "58046", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud_circle", "matchTextDirection": "false" }, { "codePoint": "58047", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud_done", "matchTextDirection": "false" }, { "codePoint": "58048", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud_download", "matchTextDirection": "false" }, { "codePoint": "58049", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud_off", "matchTextDirection": "false" }, { "codePoint": "58050", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud_queue", "matchTextDirection": "false" }, { "codePoint": "58051", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "cloud_upload", "matchTextDirection": "false" }, { "codePoint": "59503", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "code", "matchTextDirection": "false" }, { "codePoint": "58294", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "collections", "matchTextDirection": "false" }, { "codePoint": "58417", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "collections_bookmark", "matchTextDirection": "false" }, { "codePoint": "58295", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "color_lens", "matchTextDirection": "false" }, { "codePoint": "58296", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "colorize", "matchTextDirection": "false" }, { "codePoint": "57529", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "comment", "matchTextDirection": "false" }, { "codePoint": "58297", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "compare", "matchTextDirection": "false" }, { "codePoint": "59669", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "compare_arrows", "matchTextDirection": "false" }, { "codePoint": "58122", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "computer", "matchTextDirection": "false" }, { "codePoint": "58936", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "confirmation_number", "matchTextDirection": "false" }, { "codePoint": "57552", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "contact_mail", "matchTextDirection": "false" }, { "codePoint": "57551", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "contact_phone", "matchTextDirection": "false" }, { "codePoint": "57530", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "contacts", "matchTextDirection": "false" }, { "codePoint": "57677", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "content_copy", "matchTextDirection": "false" }, { "codePoint": "57678", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "content_cut", "matchTextDirection": "false" }, { "codePoint": "57679", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "content_paste", "matchTextDirection": "false" }, { "codePoint": "58298", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "control_point", "matchTextDirection": "false" }, { "codePoint": "58299", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "control_point_duplicate", "matchTextDirection": "false" }, { "codePoint": "59660", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "copyright", "matchTextDirection": "false" }, { "codePoint": "57680", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "create", "matchTextDirection": "false" }, { "codePoint": "58060", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "create_new_folder", "matchTextDirection": "false" }, { "codePoint": "59504", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "credit_card", "matchTextDirection": "false" }, { "codePoint": "58302", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop", "matchTextDirection": "false" }, { "codePoint": "58300", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_16_9", "matchTextDirection": "false" }, { "codePoint": "58301", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_3_2", "matchTextDirection": "false" }, { "codePoint": "58303", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_5_4", "matchTextDirection": "false" }, { "codePoint": "58304", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_7_5", "matchTextDirection": "false" }, { "codePoint": "58305", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_din", "matchTextDirection": "false" }, { "codePoint": "58306", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_free", "matchTextDirection": "false" }, { "codePoint": "58307", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_landscape", "matchTextDirection": "false" }, { "codePoint": "58308", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_original", "matchTextDirection": "false" }, { "codePoint": "58309", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_portrait", "matchTextDirection": "false" }, { "codePoint": "58423", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_rotate", "matchTextDirection": "false" }, { "codePoint": "58310", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "crop_square", "matchTextDirection": "false" }, { "codePoint": "59505", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dashboard", "matchTextDirection": "false" }, { "codePoint": "57775", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "data_usage", "matchTextDirection": "false" }, { "codePoint": "59670", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "date_range", "matchTextDirection": "false" }, { "codePoint": "58311", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dehaze", "matchTextDirection": "false" }, { "codePoint": "59506", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "delete", "matchTextDirection": "false" }, { "codePoint": "59691", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "delete_forever", "matchTextDirection": "false" }, { "codePoint": "59694", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "delete_outline", "matchTextDirection": "false" }, { "codePoint": "57708", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "delete_sweep", "matchTextDirection": "false" }, { "codePoint": "58742", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "departure_board", "matchTextDirection": "false" }, { "codePoint": "59507", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "description", "matchTextDirection": "false" }, { "codePoint": "58123", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "desktop_mac", "matchTextDirection": "false" }, { "codePoint": "58124", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "desktop_windows", "matchTextDirection": "false" }, { "codePoint": "58312", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "details", "matchTextDirection": "false" }, { "codePoint": "58125", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "developer_board", "matchTextDirection": "false" }, { "codePoint": "57776", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "developer_mode", "matchTextDirection": "false" }, { "codePoint": "58165", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "device_hub", "matchTextDirection": "false" }, { "codePoint": "58169", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "device_unknown", "matchTextDirection": "true" }, { "codePoint": "57777", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "devices", "matchTextDirection": "false" }, { "codePoint": "58167", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "devices_other", "matchTextDirection": "false" }, { "codePoint": "57531", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dialer_sip", "matchTextDirection": "false" }, { "codePoint": "57532", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dialpad", "matchTextDirection": "false" }, { "codePoint": "58670", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions", "matchTextDirection": "false" }, { "codePoint": "58671", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_bike", "matchTextDirection": "false" }, { "codePoint": "58674", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_boat", "matchTextDirection": "false" }, { "codePoint": "58672", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_bus", "matchTextDirection": "false" }, { "codePoint": "58673", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_car", "matchTextDirection": "false" }, { "codePoint": "58676", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_railway", "matchTextDirection": "false" }, { "codePoint": "58726", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_run", "matchTextDirection": "false" }, { "codePoint": "58675", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_subway", "matchTextDirection": "false" }, { "codePoint": "58677", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_transit", "matchTextDirection": "false" }, { "codePoint": "58678", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "directions_walk", "matchTextDirection": "false" }, { "codePoint": "58896", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "disc_full", "matchTextDirection": "false" }, { "codePoint": "59509", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dns", "matchTextDirection": "false" }, { "codePoint": "58898", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "do_not_disturb", "matchTextDirection": "false" }, { "codePoint": "58897", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "do_not_disturb_alt", "matchTextDirection": "false" }, { "codePoint": "58947", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "do_not_disturb_off", "matchTextDirection": "false" }, { "codePoint": "58948", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "do_not_disturb_on", "matchTextDirection": "false" }, { "codePoint": "58126", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dock", "matchTextDirection": "false" }, { "codePoint": "59374", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "domain", "matchTextDirection": "false" }, { "codePoint": "59510", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "done", "matchTextDirection": "false" }, { "codePoint": "59511", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "done_all", "matchTextDirection": "false" }, { "codePoint": "59695", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "done_outline", "matchTextDirection": "false" }, { "codePoint": "59671", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "donut_large", "matchTextDirection": "false" }, { "codePoint": "59672", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "donut_small", "matchTextDirection": "false" }, { "codePoint": "57681", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "drafts", "matchTextDirection": "false" }, { "codePoint": "57949", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "drag_handle", "matchTextDirection": "false" }, { "codePoint": "58899", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "drive_eta", "matchTextDirection": "false" }, { "codePoint": "57778", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "dvr", "matchTextDirection": "true" }, { "codePoint": "58313", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "edit", "matchTextDirection": "false" }, { "codePoint": "58744", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "edit_attributes", "matchTextDirection": "false" }, { "codePoint": "58728", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "edit_location", "matchTextDirection": "false" }, { "codePoint": "59643", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "eject", "matchTextDirection": "false" }, { "codePoint": "57534", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "email", "matchTextDirection": "false" }, { "codePoint": "58943", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "enhanced_encryption", "matchTextDirection": "false" }, { "codePoint": "57373", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "equalizer", "matchTextDirection": "false" }, { "codePoint": "57344", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "error", "matchTextDirection": "false" }, { "codePoint": "57345", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "error_outline", "matchTextDirection": "false" }, { "codePoint": "59686", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "euro_symbol", "matchTextDirection": "false" }, { "codePoint": "58733", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "ev_station", "matchTextDirection": "false" }, { "codePoint": "59512", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "event", "matchTextDirection": "false" }, { "codePoint": "58900", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "event_available", "matchTextDirection": "false" }, { "codePoint": "58901", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "event_busy", "matchTextDirection": "false" }, { "codePoint": "58902", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "event_note", "matchTextDirection": "true" }, { "codePoint": "59651", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "event_seat", "matchTextDirection": "false" }, { "codePoint": "59513", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exit_to_app", "matchTextDirection": "false" }, { "codePoint": "58830", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "expand_less", "matchTextDirection": "false" }, { "codePoint": "58831", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "expand_more", "matchTextDirection": "false" }, { "codePoint": "57374", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "explicit", "matchTextDirection": "false" }, { "codePoint": "59514", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "explore", "matchTextDirection": "false" }, { "codePoint": "58314", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exposure", "matchTextDirection": "false" }, { "codePoint": "58315", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exposure_neg_1", "matchTextDirection": "false" }, { "codePoint": "58316", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exposure_neg_2", "matchTextDirection": "false" }, { "codePoint": "58317", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exposure_plus_1", "matchTextDirection": "false" }, { "codePoint": "58318", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exposure_plus_2", "matchTextDirection": "false" }, { "codePoint": "58319", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "exposure_zero", "matchTextDirection": "false" }, { "codePoint": "59515", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "extension", "matchTextDirection": "false" }, { "codePoint": "59516", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "face", "matchTextDirection": "false" }, { "codePoint": "57375", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fast_forward", "matchTextDirection": "false" }, { "codePoint": "57376", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fast_rewind", "matchTextDirection": "false" }, { "codePoint": "58746", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fastfood", "matchTextDirection": "false" }, { "codePoint": "59517", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "favorite", "matchTextDirection": "false" }, { "codePoint": "59518", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "favorite_border", "matchTextDirection": "false" }, { "codePoint": "57453", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "featured_play_list", "matchTextDirection": "true" }, { "codePoint": "57454", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "featured_video", "matchTextDirection": "true" }, { "codePoint": "59519", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "feedback", "matchTextDirection": "false" }, { "codePoint": "57437", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fiber_dvr", "matchTextDirection": "false" }, { "codePoint": "57441", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fiber_manual_record", "matchTextDirection": "false" }, { "codePoint": "57438", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fiber_new", "matchTextDirection": "false" }, { "codePoint": "57450", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fiber_pin", "matchTextDirection": "false" }, { "codePoint": "57442", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fiber_smart_record", "matchTextDirection": "false" }, { "codePoint": "58052", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "file_download", "matchTextDirection": "false" }, { "codePoint": "58054", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "file_upload", "matchTextDirection": "false" }, { "codePoint": "58323", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter", "matchTextDirection": "false" }, { "codePoint": "58320", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_1", "matchTextDirection": "false" }, { "codePoint": "58321", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_2", "matchTextDirection": "false" }, { "codePoint": "58322", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_3", "matchTextDirection": "false" }, { "codePoint": "58324", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_4", "matchTextDirection": "false" }, { "codePoint": "58325", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_5", "matchTextDirection": "false" }, { "codePoint": "58326", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_6", "matchTextDirection": "false" }, { "codePoint": "58327", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_7", "matchTextDirection": "false" }, { "codePoint": "58328", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_8", "matchTextDirection": "false" }, { "codePoint": "58329", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_9", "matchTextDirection": "false" }, { "codePoint": "58330", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_9_plus", "matchTextDirection": "false" }, { "codePoint": "58331", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_b_and_w", "matchTextDirection": "false" }, { "codePoint": "58332", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_center_focus", "matchTextDirection": "false" }, { "codePoint": "58333", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_drama", "matchTextDirection": "false" }, { "codePoint": "58334", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_frames", "matchTextDirection": "false" }, { "codePoint": "58335", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_hdr", "matchTextDirection": "false" }, { "codePoint": "57682", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_list", "matchTextDirection": "false" }, { "codePoint": "58336", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_none", "matchTextDirection": "false" }, { "codePoint": "58338", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_tilt_shift", "matchTextDirection": "false" }, { "codePoint": "58339", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "filter_vintage", "matchTextDirection": "false" }, { "codePoint": "59520", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "find_in_page", "matchTextDirection": "false" }, { "codePoint": "59521", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "find_replace", "matchTextDirection": "false" }, { "codePoint": "59661", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fingerprint", "matchTextDirection": "false" }, { "codePoint": "58844", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "first_page", "matchTextDirection": "true" }, { "codePoint": "60227", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fitness_center", "matchTextDirection": "false" }, { "codePoint": "57683", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flag", "matchTextDirection": "false" }, { "codePoint": "58340", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flare", "matchTextDirection": "false" }, { "codePoint": "58341", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flash_auto", "matchTextDirection": "false" }, { "codePoint": "58342", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flash_off", "matchTextDirection": "false" }, { "codePoint": "58343", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flash_on", "matchTextDirection": "false" }, { "codePoint": "58681", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flight", "matchTextDirection": "false" }, { "codePoint": "59652", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flight_land", "matchTextDirection": "true" }, { "codePoint": "59653", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flight_takeoff", "matchTextDirection": "true" }, { "codePoint": "58344", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flip", "matchTextDirection": "false" }, { "codePoint": "59522", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flip_to_back", "matchTextDirection": "false" }, { "codePoint": "59523", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "flip_to_front", "matchTextDirection": "false" }, { "codePoint": "58055", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "folder", "matchTextDirection": "false" }, { "codePoint": "58056", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "folder_open", "matchTextDirection": "false" }, { "codePoint": "58057", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "folder_shared", "matchTextDirection": "false" }, { "codePoint": "58903", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "folder_special", "matchTextDirection": "false" }, { "codePoint": "57703", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "font_download", "matchTextDirection": "false" }, { "codePoint": "57908", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_align_center", "matchTextDirection": "false" }, { "codePoint": "57909", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_align_justify", "matchTextDirection": "false" }, { "codePoint": "57910", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_align_left", "matchTextDirection": "false" }, { "codePoint": "57911", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_align_right", "matchTextDirection": "false" }, { "codePoint": "57912", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_bold", "matchTextDirection": "false" }, { "codePoint": "57913", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_clear", "matchTextDirection": "false" }, { "codePoint": "57914", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_color_fill", "matchTextDirection": "false" }, { "codePoint": "57915", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_color_reset", "matchTextDirection": "false" }, { "codePoint": "57916", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_color_text", "matchTextDirection": "false" }, { "codePoint": "57917", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_indent_decrease", "matchTextDirection": "true" }, { "codePoint": "57918", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_indent_increase", "matchTextDirection": "true" }, { "codePoint": "57919", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_italic", "matchTextDirection": "false" }, { "codePoint": "57920", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_line_spacing", "matchTextDirection": "false" }, { "codePoint": "57921", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_list_bulleted", "matchTextDirection": "true" }, { "codePoint": "57922", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_list_numbered", "matchTextDirection": "false" }, { "codePoint": "57959", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_list_numbered_rtl", "matchTextDirection": "false" }, { "codePoint": "57923", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_paint", "matchTextDirection": "false" }, { "codePoint": "57924", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_quote", "matchTextDirection": "false" }, { "codePoint": "57950", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_shapes", "matchTextDirection": "false" }, { "codePoint": "57925", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_size", "matchTextDirection": "false" }, { "codePoint": "57926", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_strikethrough", "matchTextDirection": "false" }, { "codePoint": "57927", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_textdirection_l_to_r", "matchTextDirection": "false" }, { "codePoint": "57928", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_textdirection_r_to_l", "matchTextDirection": "false" }, { "codePoint": "57929", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "format_underlined", "matchTextDirection": "false" }, { "codePoint": "57535", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "forum", "matchTextDirection": "false" }, { "codePoint": "57684", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "forward", "matchTextDirection": "true" }, { "codePoint": "57430", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "forward_10", "matchTextDirection": "false" }, { "codePoint": "57431", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "forward_30", "matchTextDirection": "false" }, { "codePoint": "57432", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "forward_5", "matchTextDirection": "false" }, { "codePoint": "60228", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "free_breakfast", "matchTextDirection": "false" }, { "codePoint": "58832", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fullscreen", "matchTextDirection": "false" }, { "codePoint": "58833", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "fullscreen_exit", "matchTextDirection": "false" }, { "codePoint": "57930", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "functions", "matchTextDirection": "true" }, { "codePoint": "59687", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "g_translate", "matchTextDirection": "false" }, { "codePoint": "58127", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gamepad", "matchTextDirection": "false" }, { "codePoint": "57377", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "games", "matchTextDirection": "false" }, { "codePoint": "59662", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gavel", "matchTextDirection": "false" }, { "codePoint": "57685", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gesture", "matchTextDirection": "false" }, { "codePoint": "59524", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "get_app", "matchTextDirection": "false" }, { "codePoint": "59656", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gif", "matchTextDirection": "false" }, { "codePoint": "60229", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "golf_course", "matchTextDirection": "false" }, { "codePoint": "57779", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gps_fixed", "matchTextDirection": "false" }, { "codePoint": "57780", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gps_not_fixed", "matchTextDirection": "false" }, { "codePoint": "57781", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gps_off", "matchTextDirection": "false" }, { "codePoint": "59525", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "grade", "matchTextDirection": "false" }, { "codePoint": "58345", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "gradient", "matchTextDirection": "false" }, { "codePoint": "58346", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "grain", "matchTextDirection": "false" }, { "codePoint": "57784", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "graphic_eq", "matchTextDirection": "false" }, { "codePoint": "58347", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "grid_off", "matchTextDirection": "false" }, { "codePoint": "58348", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "grid_on", "matchTextDirection": "false" }, { "codePoint": "59375", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "group", "matchTextDirection": "false" }, { "codePoint": "59376", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "group_add", "matchTextDirection": "false" }, { "codePoint": "59526", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "group_work", "matchTextDirection": "false" }, { "codePoint": "57426", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hd", "matchTextDirection": "false" }, { "codePoint": "58349", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hdr_off", "matchTextDirection": "false" }, { "codePoint": "58350", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hdr_on", "matchTextDirection": "false" }, { "codePoint": "58353", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hdr_strong", "matchTextDirection": "false" }, { "codePoint": "58354", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hdr_weak", "matchTextDirection": "false" }, { "codePoint": "58128", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "headset", "matchTextDirection": "false" }, { "codePoint": "58129", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "headset_mic", "matchTextDirection": "false" }, { "codePoint": "58170", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "headset_off", "matchTextDirection": "false" }, { "codePoint": "58355", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "healing", "matchTextDirection": "false" }, { "codePoint": "57379", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hearing", "matchTextDirection": "false" }, { "codePoint": "59527", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "help", "matchTextDirection": "true" }, { "codePoint": "59645", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "help_outline", "matchTextDirection": "true" }, { "codePoint": "57380", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "high_quality", "matchTextDirection": "false" }, { "codePoint": "57951", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "highlight", "matchTextDirection": "false" }, { "codePoint": "59528", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "highlight_off", "matchTextDirection": "false" }, { "codePoint": "59529", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "history", "matchTextDirection": "false" }, { "codePoint": "59530", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "home", "matchTextDirection": "false" }, { "codePoint": "60230", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hot_tub", "matchTextDirection": "false" }, { "codePoint": "58682", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hotel", "matchTextDirection": "false" }, { "codePoint": "59531", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hourglass_empty", "matchTextDirection": "false" }, { "codePoint": "59532", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "hourglass_full", "matchTextDirection": "false" }, { "codePoint": "59650", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "http", "matchTextDirection": "false" }, { "codePoint": "59533", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "https", "matchTextDirection": "false" }, { "codePoint": "58356", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "image", "matchTextDirection": "false" }, { "codePoint": "58357", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "image_aspect_ratio", "matchTextDirection": "false" }, { "codePoint": "57568", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "import_contacts", "matchTextDirection": "false" }, { "codePoint": "57539", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "import_export", "matchTextDirection": "false" }, { "codePoint": "59666", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "important_devices", "matchTextDirection": "false" }, { "codePoint": "57686", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "inbox", "matchTextDirection": "false" }, { "codePoint": "59657", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "indeterminate_check_box", "matchTextDirection": "false" }, { "codePoint": "59534", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "info", "matchTextDirection": "false" }, { "codePoint": "59535", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "info_outline", "matchTextDirection": "false" }, { "codePoint": "59536", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "input", "matchTextDirection": "true" }, { "codePoint": "57931", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_chart", "matchTextDirection": "false" }, { "codePoint": "57932", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_comment", "matchTextDirection": "false" }, { "codePoint": "57933", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_drive_file", "matchTextDirection": "false" }, { "codePoint": "57934", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_emoticon", "matchTextDirection": "false" }, { "codePoint": "57935", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_invitation", "matchTextDirection": "false" }, { "codePoint": "57936", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_link", "matchTextDirection": "false" }, { "codePoint": "57937", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "insert_photo", "matchTextDirection": "false" }, { "codePoint": "59537", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "invert_colors", "matchTextDirection": "false" }, { "codePoint": "57540", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "invert_colors_off", "matchTextDirection": "false" }, { "codePoint": "58358", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "iso", "matchTextDirection": "false" }, { "codePoint": "58130", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard", "matchTextDirection": "false" }, { "codePoint": "58131", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_arrow_down", "matchTextDirection": "false" }, { "codePoint": "58132", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_arrow_left", "matchTextDirection": "false" }, { "codePoint": "58133", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_arrow_right", "matchTextDirection": "false" }, { "codePoint": "58134", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_arrow_up", "matchTextDirection": "false" }, { "codePoint": "58135", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_backspace", "matchTextDirection": "true" }, { "codePoint": "58136", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_capslock", "matchTextDirection": "false" }, { "codePoint": "58138", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_hide", "matchTextDirection": "false" }, { "codePoint": "58139", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_return", "matchTextDirection": "false" }, { "codePoint": "58140", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_tab", "matchTextDirection": "true" }, { "codePoint": "58141", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "keyboard_voice", "matchTextDirection": "false" }, { "codePoint": "60231", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "kitchen", "matchTextDirection": "false" }, { "codePoint": "59538", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "label", "matchTextDirection": "true" }, { "codePoint": "59703", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "label_important", "matchTextDirection": "true" }, { "codePoint": "59539", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "label_outline", "matchTextDirection": "true" }, { "codePoint": "58359", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "landscape", "matchTextDirection": "false" }, { "codePoint": "59540", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "language", "matchTextDirection": "false" }, { "codePoint": "58142", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "laptop", "matchTextDirection": "false" }, { "codePoint": "58143", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "laptop_chromebook", "matchTextDirection": "false" }, { "codePoint": "58144", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "laptop_mac", "matchTextDirection": "false" }, { "codePoint": "58145", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "laptop_windows", "matchTextDirection": "false" }, { "codePoint": "58845", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "last_page", "matchTextDirection": "true" }, { "codePoint": "59541", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "launch", "matchTextDirection": "true" }, { "codePoint": "58683", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "layers", "matchTextDirection": "false" }, { "codePoint": "58684", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "layers_clear", "matchTextDirection": "false" }, { "codePoint": "58360", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "leak_add", "matchTextDirection": "false" }, { "codePoint": "58361", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "leak_remove", "matchTextDirection": "false" }, { "codePoint": "58362", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "lens", "matchTextDirection": "false" }, { "codePoint": "57390", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "library_add", "matchTextDirection": "false" }, { "codePoint": "57391", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "library_books", "matchTextDirection": "false" }, { "codePoint": "57392", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "library_music", "matchTextDirection": "false" }, { "codePoint": "59663", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "lightbulb_outline", "matchTextDirection": "false" }, { "codePoint": "59673", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "line_style", "matchTextDirection": "false" }, { "codePoint": "59674", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "line_weight", "matchTextDirection": "false" }, { "codePoint": "57952", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "linear_scale", "matchTextDirection": "false" }, { "codePoint": "57687", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "link", "matchTextDirection": "false" }, { "codePoint": "57711", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "link_off", "matchTextDirection": "false" }, { "codePoint": "58424", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "linked_camera", "matchTextDirection": "false" }, { "codePoint": "59542", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "list", "matchTextDirection": "true" }, { "codePoint": "57542", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "live_help", "matchTextDirection": "true" }, { "codePoint": "58937", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "live_tv", "matchTextDirection": "false" }, { "codePoint": "58687", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_activity", "matchTextDirection": "false" }, { "codePoint": "58685", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_airport", "matchTextDirection": "false" }, { "codePoint": "58686", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_atm", "matchTextDirection": "false" }, { "codePoint": "58688", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_bar", "matchTextDirection": "false" }, { "codePoint": "58689", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_cafe", "matchTextDirection": "false" }, { "codePoint": "58690", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_car_wash", "matchTextDirection": "false" }, { "codePoint": "58691", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_convenience_store", "matchTextDirection": "false" }, { "codePoint": "58710", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_dining", "matchTextDirection": "false" }, { "codePoint": "58692", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_drink", "matchTextDirection": "false" }, { "codePoint": "58693", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_florist", "matchTextDirection": "false" }, { "codePoint": "58694", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_gas_station", "matchTextDirection": "false" }, { "codePoint": "58695", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_grocery_store", "matchTextDirection": "false" }, { "codePoint": "58696", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_hospital", "matchTextDirection": "false" }, { "codePoint": "58697", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_hotel", "matchTextDirection": "false" }, { "codePoint": "58698", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_laundry_service", "matchTextDirection": "false" }, { "codePoint": "58699", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_library", "matchTextDirection": "false" }, { "codePoint": "58700", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_mall", "matchTextDirection": "false" }, { "codePoint": "58701", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_movies", "matchTextDirection": "false" }, { "codePoint": "58702", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_offer", "matchTextDirection": "false" }, { "codePoint": "58703", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_parking", "matchTextDirection": "false" }, { "codePoint": "58704", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_pharmacy", "matchTextDirection": "false" }, { "codePoint": "58705", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_phone", "matchTextDirection": "false" }, { "codePoint": "58706", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_pizza", "matchTextDirection": "false" }, { "codePoint": "58707", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_play", "matchTextDirection": "false" }, { "codePoint": "58708", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_post_office", "matchTextDirection": "false" }, { "codePoint": "58709", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_printshop", "matchTextDirection": "false" }, { "codePoint": "58711", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_see", "matchTextDirection": "false" }, { "codePoint": "58712", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_shipping", "matchTextDirection": "false" }, { "codePoint": "58713", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "local_taxi", "matchTextDirection": "false" }, { "codePoint": "59377", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "location_city", "matchTextDirection": "false" }, { "codePoint": "57782", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "location_disabled", "matchTextDirection": "false" }, { "codePoint": "57543", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "location_off", "matchTextDirection": "false" }, { "codePoint": "57544", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "location_on", "matchTextDirection": "false" }, { "codePoint": "57783", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "location_searching", "matchTextDirection": "false" }, { "codePoint": "59543", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "lock", "matchTextDirection": "false" }, { "codePoint": "59544", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "lock_open", "matchTextDirection": "false" }, { "codePoint": "59545", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "lock_outline", "matchTextDirection": "false" }, { "codePoint": "58364", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks", "matchTextDirection": "false" }, { "codePoint": "58363", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks_3", "matchTextDirection": "false" }, { "codePoint": "58365", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks_4", "matchTextDirection": "false" }, { "codePoint": "58366", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks_5", "matchTextDirection": "false" }, { "codePoint": "58367", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks_6", "matchTextDirection": "false" }, { "codePoint": "58368", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks_one", "matchTextDirection": "false" }, { "codePoint": "58369", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "looks_two", "matchTextDirection": "false" }, { "codePoint": "57384", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "loop", "matchTextDirection": "false" }, { "codePoint": "58370", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "loupe", "matchTextDirection": "false" }, { "codePoint": "57709", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "low_priority", "matchTextDirection": "false" }, { "codePoint": "59546", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "loyalty", "matchTextDirection": "false" }, { "codePoint": "57688", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mail", "matchTextDirection": "false" }, { "codePoint": "57569", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mail_outline", "matchTextDirection": "false" }, { "codePoint": "58715", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "map", "matchTextDirection": "false" }, { "codePoint": "57689", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "markunread", "matchTextDirection": "false" }, { "codePoint": "59547", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "markunread_mailbox", "matchTextDirection": "false" }, { "codePoint": "59696", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "maximize", "matchTextDirection": "false" }, { "codePoint": "58146", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "memory", "matchTextDirection": "false" }, { "codePoint": "58834", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "menu", "matchTextDirection": "false" }, { "codePoint": "57938", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "merge_type", "matchTextDirection": "false" }, { "codePoint": "57545", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "message", "matchTextDirection": "false" }, { "codePoint": "57385", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mic", "matchTextDirection": "false" }, { "codePoint": "57386", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mic_none", "matchTextDirection": "false" }, { "codePoint": "57387", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mic_off", "matchTextDirection": "false" }, { "codePoint": "59697", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "minimize", "matchTextDirection": "false" }, { "codePoint": "57459", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "missed_video_call", "matchTextDirection": "false" }, { "codePoint": "58904", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mms", "matchTextDirection": "false" }, { "codePoint": "57575", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mobile_screen_share", "matchTextDirection": "true" }, { "codePoint": "57939", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mode_comment", "matchTextDirection": "false" }, { "codePoint": "57940", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mode_edit", "matchTextDirection": "false" }, { "codePoint": "57955", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "monetization_on", "matchTextDirection": "false" }, { "codePoint": "57948", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "money_off", "matchTextDirection": "false" }, { "codePoint": "58371", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "monochrome_photos", "matchTextDirection": "false" }, { "codePoint": "59378", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mood", "matchTextDirection": "false" }, { "codePoint": "59379", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mood_bad", "matchTextDirection": "false" }, { "codePoint": "58905", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "more", "matchTextDirection": "false" }, { "codePoint": "58835", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "more_horiz", "matchTextDirection": "false" }, { "codePoint": "58836", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "more_vert", "matchTextDirection": "false" }, { "codePoint": "59675", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "motorcycle", "matchTextDirection": "false" }, { "codePoint": "58147", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "mouse", "matchTextDirection": "false" }, { "codePoint": "57704", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "move_to_inbox", "matchTextDirection": "false" }, { "codePoint": "57388", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "movie", "matchTextDirection": "false" }, { "codePoint": "58372", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "movie_creation", "matchTextDirection": "false" }, { "codePoint": "58426", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "movie_filter", "matchTextDirection": "false" }, { "codePoint": "59103", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "multiline_chart", "matchTextDirection": "true" }, { "codePoint": "58373", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "music_note", "matchTextDirection": "false" }, { "codePoint": "57443", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "music_video", "matchTextDirection": "false" }, { "codePoint": "58716", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "my_location", "matchTextDirection": "false" }, { "codePoint": "58374", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "nature", "matchTextDirection": "false" }, { "codePoint": "58375", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "nature_people", "matchTextDirection": "false" }, { "codePoint": "58376", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "navigate_before", "matchTextDirection": "true" }, { "codePoint": "58377", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "navigate_next", "matchTextDirection": "true" }, { "codePoint": "58717", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "navigation", "matchTextDirection": "false" }, { "codePoint": "58729", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "near_me", "matchTextDirection": "false" }, { "codePoint": "57785", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "network_cell", "matchTextDirection": "false" }, { "codePoint": "58944", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "network_check", "matchTextDirection": "false" }, { "codePoint": "58906", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "network_locked", "matchTextDirection": "false" }, { "codePoint": "57786", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "network_wifi", "matchTextDirection": "false" }, { "codePoint": "57393", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "new_releases", "matchTextDirection": "false" }, { "codePoint": "57706", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "next_week", "matchTextDirection": "true" }, { "codePoint": "57787", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "nfc", "matchTextDirection": "false" }, { "codePoint": "58945", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "no_encryption", "matchTextDirection": "false" }, { "codePoint": "57548", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "no_sim", "matchTextDirection": "false" }, { "codePoint": "57395", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "not_interested", "matchTextDirection": "false" }, { "codePoint": "58741", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "not_listed_location", "matchTextDirection": "false" }, { "codePoint": "57455", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "note", "matchTextDirection": "true" }, { "codePoint": "59548", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "note_add", "matchTextDirection": "false" }, { "codePoint": "57348", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "notification_important", "matchTextDirection": "false" }, { "codePoint": "59380", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "notifications", "matchTextDirection": "false" }, { "codePoint": "59383", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "notifications_active", "matchTextDirection": "false" }, { "codePoint": "59381", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "notifications_none", "matchTextDirection": "false" }, { "codePoint": "59382", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "notifications_off", "matchTextDirection": "false" }, { "codePoint": "59384", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "notifications_paused", "matchTextDirection": "false" }, { "codePoint": "59698", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "offline_bolt", "matchTextDirection": "false" }, { "codePoint": "59658", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "offline_pin", "matchTextDirection": "false" }, { "codePoint": "58938", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "ondemand_video", "matchTextDirection": "false" }, { "codePoint": "59676", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "opacity", "matchTextDirection": "false" }, { "codePoint": "59549", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "open_in_browser", "matchTextDirection": "false" }, { "codePoint": "59550", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "open_in_new", "matchTextDirection": "true" }, { "codePoint": "59551", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "open_with", "matchTextDirection": "false" }, { "codePoint": "57710", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "outlined_flag", "matchTextDirection": "false" }, { "codePoint": "59385", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pages", "matchTextDirection": "false" }, { "codePoint": "59552", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pageview", "matchTextDirection": "false" }, { "codePoint": "58378", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "palette", "matchTextDirection": "false" }, { "codePoint": "59685", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pan_tool", "matchTextDirection": "false" }, { "codePoint": "58379", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "panorama", "matchTextDirection": "false" }, { "codePoint": "58380", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "panorama_fish_eye", "matchTextDirection": "false" }, { "codePoint": "58381", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "panorama_horizontal", "matchTextDirection": "false" }, { "codePoint": "58382", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "panorama_vertical", "matchTextDirection": "false" }, { "codePoint": "58383", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "panorama_wide_angle", "matchTextDirection": "false" }, { "codePoint": "59386", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "party_mode", "matchTextDirection": "false" }, { "codePoint": "57396", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pause", "matchTextDirection": "false" }, { "codePoint": "57397", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pause_circle_filled", "matchTextDirection": "false" }, { "codePoint": "57398", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pause_circle_outline", "matchTextDirection": "false" }, { "codePoint": "59553", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "payment", "matchTextDirection": "false" }, { "codePoint": "59387", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "people", "matchTextDirection": "false" }, { "codePoint": "59388", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "people_outline", "matchTextDirection": "false" }, { "codePoint": "59554", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_camera_mic", "matchTextDirection": "false" }, { "codePoint": "59555", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_contact_calendar", "matchTextDirection": "false" }, { "codePoint": "59556", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_data_setting", "matchTextDirection": "false" }, { "codePoint": "59557", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_device_information", "matchTextDirection": "false" }, { "codePoint": "59558", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_identity", "matchTextDirection": "false" }, { "codePoint": "59559", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_media", "matchTextDirection": "false" }, { "codePoint": "59560", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_phone_msg", "matchTextDirection": "false" }, { "codePoint": "59561", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "perm_scan_wifi", "matchTextDirection": "false" }, { "codePoint": "59389", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "person", "matchTextDirection": "false" }, { "codePoint": "59390", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "person_add", "matchTextDirection": "false" }, { "codePoint": "59391", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "person_outline", "matchTextDirection": "false" }, { "codePoint": "58714", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "person_pin", "matchTextDirection": "false" }, { "codePoint": "58730", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "person_pin_circle", "matchTextDirection": "false" }, { "codePoint": "58939", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "personal_video", "matchTextDirection": "false" }, { "codePoint": "59677", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pets", "matchTextDirection": "false" }, { "codePoint": "57549", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone", "matchTextDirection": "false" }, { "codePoint": "58148", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_android", "matchTextDirection": "false" }, { "codePoint": "58907", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_bluetooth_speaker", "matchTextDirection": "false" }, { "codePoint": "58908", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_forwarded", "matchTextDirection": "false" }, { "codePoint": "58909", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_in_talk", "matchTextDirection": "false" }, { "codePoint": "58149", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_iphone", "matchTextDirection": "false" }, { "codePoint": "58910", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_locked", "matchTextDirection": "false" }, { "codePoint": "58911", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_missed", "matchTextDirection": "false" }, { "codePoint": "58912", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phone_paused", "matchTextDirection": "false" }, { "codePoint": "58150", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phonelink", "matchTextDirection": "false" }, { "codePoint": "57563", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phonelink_erase", "matchTextDirection": "false" }, { "codePoint": "57564", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phonelink_lock", "matchTextDirection": "false" }, { "codePoint": "58151", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phonelink_off", "matchTextDirection": "false" }, { "codePoint": "57565", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phonelink_ring", "matchTextDirection": "false" }, { "codePoint": "57566", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "phonelink_setup", "matchTextDirection": "false" }, { "codePoint": "58384", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo", "matchTextDirection": "false" }, { "codePoint": "58385", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_album", "matchTextDirection": "false" }, { "codePoint": "58386", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_camera", "matchTextDirection": "false" }, { "codePoint": "58427", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_filter", "matchTextDirection": "false" }, { "codePoint": "58387", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_library", "matchTextDirection": "false" }, { "codePoint": "58418", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_size_select_actual", "matchTextDirection": "false" }, { "codePoint": "58419", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_size_select_large", "matchTextDirection": "false" }, { "codePoint": "58420", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "photo_size_select_small", "matchTextDirection": "false" }, { "codePoint": "58389", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "picture_as_pdf", "matchTextDirection": "false" }, { "codePoint": "59562", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "picture_in_picture", "matchTextDirection": "false" }, { "codePoint": "59665", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "picture_in_picture_alt", "matchTextDirection": "false" }, { "codePoint": "59076", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pie_chart", "matchTextDirection": "false" }, { "codePoint": "59077", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pie_chart_outlined", "matchTextDirection": "false" }, { "codePoint": "58718", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pin_drop", "matchTextDirection": "false" }, { "codePoint": "58719", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "place", "matchTextDirection": "false" }, { "codePoint": "57399", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "play_arrow", "matchTextDirection": "false" }, { "codePoint": "57400", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "play_circle_filled", "matchTextDirection": "false" }, { "codePoint": "57401", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "play_circle_outline", "matchTextDirection": "false" }, { "codePoint": "59654", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "play_for_work", "matchTextDirection": "false" }, { "codePoint": "57403", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "playlist_add", "matchTextDirection": "true" }, { "codePoint": "57445", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "playlist_add_check", "matchTextDirection": "false" }, { "codePoint": "57439", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "playlist_play", "matchTextDirection": "false" }, { "codePoint": "59392", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "plus_one", "matchTextDirection": "false" }, { "codePoint": "59393", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "poll", "matchTextDirection": "false" }, { "codePoint": "59563", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "polymer", "matchTextDirection": "false" }, { "codePoint": "60232", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pool", "matchTextDirection": "false" }, { "codePoint": "57550", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "portable_wifi_off", "matchTextDirection": "false" }, { "codePoint": "58390", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "portrait", "matchTextDirection": "false" }, { "codePoint": "58940", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "power", "matchTextDirection": "false" }, { "codePoint": "58166", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "power_input", "matchTextDirection": "false" }, { "codePoint": "59564", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "power_settings_new", "matchTextDirection": "false" }, { "codePoint": "59678", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "pregnant_woman", "matchTextDirection": "false" }, { "codePoint": "57567", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "present_to_all", "matchTextDirection": "false" }, { "codePoint": "59565", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "print", "matchTextDirection": "false" }, { "codePoint": "58949", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "priority_high", "matchTextDirection": "false" }, { "codePoint": "59403", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "public", "matchTextDirection": "false" }, { "codePoint": "57941", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "publish", "matchTextDirection": "false" }, { "codePoint": "59566", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "query_builder", "matchTextDirection": "false" }, { "codePoint": "59567", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "question_answer", "matchTextDirection": "false" }, { "codePoint": "57404", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "queue", "matchTextDirection": "false" }, { "codePoint": "57405", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "queue_music", "matchTextDirection": "true" }, { "codePoint": "57446", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "queue_play_next", "matchTextDirection": "false" }, { "codePoint": "57406", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "radio", "matchTextDirection": "false" }, { "codePoint": "59447", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "radio_button_checked", "matchTextDirection": "false" }, { "codePoint": "59446", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "radio_button_unchecked", "matchTextDirection": "false" }, { "codePoint": "58720", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rate_review", "matchTextDirection": "false" }, { "codePoint": "59568", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "receipt", "matchTextDirection": "false" }, { "codePoint": "57407", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "recent_actors", "matchTextDirection": "false" }, { "codePoint": "59679", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "record_voice_over", "matchTextDirection": "false" }, { "codePoint": "59569", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "redeem", "matchTextDirection": "false" }, { "codePoint": "57690", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "redo", "matchTextDirection": "true" }, { "codePoint": "58837", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "refresh", "matchTextDirection": "false" }, { "codePoint": "57691", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "remove", "matchTextDirection": "false" }, { "codePoint": "57692", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "remove_circle", "matchTextDirection": "false" }, { "codePoint": "57693", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "remove_circle_outline", "matchTextDirection": "false" }, { "codePoint": "57447", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "remove_from_queue", "matchTextDirection": "false" }, { "codePoint": "58391", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "remove_red_eye", "matchTextDirection": "false" }, { "codePoint": "59688", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "remove_shopping_cart", "matchTextDirection": "false" }, { "codePoint": "59646", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "reorder", "matchTextDirection": "false" }, { "codePoint": "57408", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "repeat", "matchTextDirection": "false" }, { "codePoint": "57409", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "repeat_one", "matchTextDirection": "false" }, { "codePoint": "57410", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "replay", "matchTextDirection": "false" }, { "codePoint": "57433", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "replay_10", "matchTextDirection": "false" }, { "codePoint": "57434", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "replay_30", "matchTextDirection": "false" }, { "codePoint": "57435", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "replay_5", "matchTextDirection": "false" }, { "codePoint": "57694", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "reply", "matchTextDirection": "true" }, { "codePoint": "57695", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "reply_all", "matchTextDirection": "true" }, { "codePoint": "57696", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "report", "matchTextDirection": "false" }, { "codePoint": "57712", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "report_off", "matchTextDirection": "false" }, { "codePoint": "59570", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "report_problem", "matchTextDirection": "false" }, { "codePoint": "58732", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "restaurant", "matchTextDirection": "false" }, { "codePoint": "58721", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "restaurant_menu", "matchTextDirection": "false" }, { "codePoint": "59571", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "restore", "matchTextDirection": "false" }, { "codePoint": "59704", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "restore_from_trash", "matchTextDirection": "false" }, { "codePoint": "59689", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "restore_page", "matchTextDirection": "false" }, { "codePoint": "57553", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "ring_volume", "matchTextDirection": "false" }, { "codePoint": "59572", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "room", "matchTextDirection": "false" }, { "codePoint": "60233", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "room_service", "matchTextDirection": "false" }, { "codePoint": "58392", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rotate_90_degrees_ccw", "matchTextDirection": "false" }, { "codePoint": "58393", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rotate_left", "matchTextDirection": "false" }, { "codePoint": "58394", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rotate_right", "matchTextDirection": "false" }, { "codePoint": "59680", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rounded_corner", "matchTextDirection": "false" }, { "codePoint": "58152", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "router", "matchTextDirection": "false" }, { "codePoint": "59681", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rowing", "matchTextDirection": "false" }, { "codePoint": "57573", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rss_feed", "matchTextDirection": "false" }, { "codePoint": "58946", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "rv_hookup", "matchTextDirection": "false" }, { "codePoint": "58722", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "satellite", "matchTextDirection": "false" }, { "codePoint": "57697", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "save", "matchTextDirection": "false" }, { "codePoint": "57713", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "save_alt", "matchTextDirection": "false" }, { "codePoint": "58153", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "scanner", "matchTextDirection": "false" }, { "codePoint": "57960", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "scatter_plot", "matchTextDirection": "false" }, { "codePoint": "59573", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "schedule", "matchTextDirection": "false" }, { "codePoint": "59404", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "school", "matchTextDirection": "false" }, { "codePoint": "57961", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "score", "matchTextDirection": "false" }, { "codePoint": "57790", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "screen_lock_landscape", "matchTextDirection": "false" }, { "codePoint": "57791", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "screen_lock_portrait", "matchTextDirection": "false" }, { "codePoint": "57792", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "screen_lock_rotation", "matchTextDirection": "false" }, { "codePoint": "57793", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "screen_rotation", "matchTextDirection": "false" }, { "codePoint": "57570", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "screen_share", "matchTextDirection": "true" }, { "codePoint": "58915", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sd_card", "matchTextDirection": "false" }, { "codePoint": "57794", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sd_storage", "matchTextDirection": "false" }, { "codePoint": "59574", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "search", "matchTextDirection": "false" }, { "codePoint": "58154", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "security", "matchTextDirection": "false" }, { "codePoint": "57698", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "select_all", "matchTextDirection": "false" }, { "codePoint": "57699", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "send", "matchTextDirection": "true" }, { "codePoint": "59409", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sentiment_dissatisfied", "matchTextDirection": "false" }, { "codePoint": "59410", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sentiment_neutral", "matchTextDirection": "false" }, { "codePoint": "59411", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sentiment_satisfied", "matchTextDirection": "false" }, { "codePoint": "59412", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sentiment_very_dissatisfied", "matchTextDirection": "false" }, { "codePoint": "59413", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sentiment_very_satisfied", "matchTextDirection": "false" }, { "codePoint": "59576", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings", "matchTextDirection": "false" }, { "codePoint": "59577", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_applications", "matchTextDirection": "false" }, { "codePoint": "59578", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_backup_restore", "matchTextDirection": "false" }, { "codePoint": "59579", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_bluetooth", "matchTextDirection": "false" }, { "codePoint": "59581", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_brightness", "matchTextDirection": "false" }, { "codePoint": "59580", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_cell", "matchTextDirection": "false" }, { "codePoint": "59582", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_ethernet", "matchTextDirection": "false" }, { "codePoint": "59583", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_input_antenna", "matchTextDirection": "false" }, { "codePoint": "59584", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_input_component", "matchTextDirection": "false" }, { "codePoint": "59585", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_input_composite", "matchTextDirection": "false" }, { "codePoint": "59586", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_input_hdmi", "matchTextDirection": "false" }, { "codePoint": "59587", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_input_svideo", "matchTextDirection": "false" }, { "codePoint": "59588", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_overscan", "matchTextDirection": "false" }, { "codePoint": "59589", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_phone", "matchTextDirection": "false" }, { "codePoint": "59590", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_power", "matchTextDirection": "false" }, { "codePoint": "59591", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_remote", "matchTextDirection": "false" }, { "codePoint": "57795", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_system_daydream", "matchTextDirection": "false" }, { "codePoint": "59592", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "settings_voice", "matchTextDirection": "false" }, { "codePoint": "59405", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "share", "matchTextDirection": "false" }, { "codePoint": "59593", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "shop", "matchTextDirection": "false" }, { "codePoint": "59594", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "shop_two", "matchTextDirection": "false" }, { "codePoint": "59595", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "shopping_basket", "matchTextDirection": "false" }, { "codePoint": "59596", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "shopping_cart", "matchTextDirection": "false" }, { "codePoint": "57953", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "short_text", "matchTextDirection": "true" }, { "codePoint": "59105", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "show_chart", "matchTextDirection": "true" }, { "codePoint": "57411", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "shuffle", "matchTextDirection": "false" }, { "codePoint": "58429", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "shutter_speed", "matchTextDirection": "false" }, { "codePoint": "57800", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_cellular_4_bar", "matchTextDirection": "false" }, { "codePoint": "57805", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_cellular_connected_no_internet_4_bar", "matchTextDirection": "false" }, { "codePoint": "57806", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_cellular_no_sim", "matchTextDirection": "false" }, { "codePoint": "57807", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_cellular_null", "matchTextDirection": "false" }, { "codePoint": "57808", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_cellular_off", "matchTextDirection": "false" }, { "codePoint": "57816", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_wifi_4_bar", "matchTextDirection": "false" }, { "codePoint": "57817", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_wifi_4_bar_lock", "matchTextDirection": "false" }, { "codePoint": "57818", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "signal_wifi_off", "matchTextDirection": "false" }, { "codePoint": "58155", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sim_card", "matchTextDirection": "false" }, { "codePoint": "58916", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sim_card_alert", "matchTextDirection": "false" }, { "codePoint": "57412", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "skip_next", "matchTextDirection": "false" }, { "codePoint": "57413", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "skip_previous", "matchTextDirection": "false" }, { "codePoint": "58395", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "slideshow", "matchTextDirection": "false" }, { "codePoint": "57448", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "slow_motion_video", "matchTextDirection": "false" }, { "codePoint": "58156", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "smartphone", "matchTextDirection": "false" }, { "codePoint": "60234", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "smoke_free", "matchTextDirection": "false" }, { "codePoint": "60235", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "smoking_rooms", "matchTextDirection": "false" }, { "codePoint": "58917", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sms", "matchTextDirection": "false" }, { "codePoint": "58918", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sms_failed", "matchTextDirection": "false" }, { "codePoint": "57414", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "snooze", "matchTextDirection": "false" }, { "codePoint": "57700", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sort", "matchTextDirection": "true" }, { "codePoint": "57427", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sort_by_alpha", "matchTextDirection": "false" }, { "codePoint": "60236", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "spa", "matchTextDirection": "false" }, { "codePoint": "57942", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "space_bar", "matchTextDirection": "false" }, { "codePoint": "58157", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "speaker", "matchTextDirection": "false" }, { "codePoint": "58158", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "speaker_group", "matchTextDirection": "false" }, { "codePoint": "59597", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "speaker_notes", "matchTextDirection": "false" }, { "codePoint": "59690", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "speaker_notes_off", "matchTextDirection": "false" }, { "codePoint": "57554", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "speaker_phone", "matchTextDirection": "false" }, { "codePoint": "59598", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "spellcheck", "matchTextDirection": "false" }, { "codePoint": "59448", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "star", "matchTextDirection": "false" }, { "codePoint": "59450", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "star_border", "matchTextDirection": "false" }, { "codePoint": "59449", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "star_half", "matchTextDirection": "true" }, { "codePoint": "59600", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stars", "matchTextDirection": "false" }, { "codePoint": "57555", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stay_current_landscape", "matchTextDirection": "false" }, { "codePoint": "57556", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stay_current_portrait", "matchTextDirection": "false" }, { "codePoint": "57557", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stay_primary_landscape", "matchTextDirection": "false" }, { "codePoint": "57558", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stay_primary_portrait", "matchTextDirection": "false" }, { "codePoint": "57415", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stop", "matchTextDirection": "false" }, { "codePoint": "57571", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "stop_screen_share", "matchTextDirection": "false" }, { "codePoint": "57819", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "storage", "matchTextDirection": "false" }, { "codePoint": "59601", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "store", "matchTextDirection": "false" }, { "codePoint": "58723", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "store_mall_directory", "matchTextDirection": "false" }, { "codePoint": "58396", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "straighten", "matchTextDirection": "false" }, { "codePoint": "58734", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "streetview", "matchTextDirection": "false" }, { "codePoint": "57943", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "strikethrough_s", "matchTextDirection": "false" }, { "codePoint": "58397", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "style", "matchTextDirection": "false" }, { "codePoint": "58841", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "subdirectory_arrow_left", "matchTextDirection": "false" }, { "codePoint": "58842", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "subdirectory_arrow_right", "matchTextDirection": "false" }, { "codePoint": "59602", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "subject", "matchTextDirection": "true" }, { "codePoint": "57444", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "subscriptions", "matchTextDirection": "false" }, { "codePoint": "57416", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "subtitles", "matchTextDirection": "false" }, { "codePoint": "58735", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "subway", "matchTextDirection": "false" }, { "codePoint": "59705", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "supervised_user_circle", "matchTextDirection": "false" }, { "codePoint": "59603", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "supervisor_account", "matchTextDirection": "false" }, { "codePoint": "57417", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "surround_sound", "matchTextDirection": "false" }, { "codePoint": "57559", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "swap_calls", "matchTextDirection": "false" }, { "codePoint": "59604", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "swap_horiz", "matchTextDirection": "false" }, { "codePoint": "59699", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "swap_horizontal_circle", "matchTextDirection": "false" }, { "codePoint": "59605", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "swap_vert", "matchTextDirection": "false" }, { "codePoint": "59606", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "swap_vertical_circle", "matchTextDirection": "false" }, { "codePoint": "58398", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "switch_camera", "matchTextDirection": "false" }, { "codePoint": "58399", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "switch_video", "matchTextDirection": "false" }, { "codePoint": "58919", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sync", "matchTextDirection": "false" }, { "codePoint": "58920", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sync_disabled", "matchTextDirection": "false" }, { "codePoint": "58921", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "sync_problem", "matchTextDirection": "false" }, { "codePoint": "58922", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "system_update", "matchTextDirection": "false" }, { "codePoint": "59607", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "system_update_alt", "matchTextDirection": "false" }, { "codePoint": "59608", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tab", "matchTextDirection": "false" }, { "codePoint": "59609", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tab_unselected", "matchTextDirection": "false" }, { "codePoint": "57957", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "table_chart", "matchTextDirection": "false" }, { "codePoint": "58159", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tablet", "matchTextDirection": "false" }, { "codePoint": "58160", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tablet_android", "matchTextDirection": "false" }, { "codePoint": "58161", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tablet_mac", "matchTextDirection": "false" }, { "codePoint": "58400", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tag_faces", "matchTextDirection": "false" }, { "codePoint": "58923", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tap_and_play", "matchTextDirection": "false" }, { "codePoint": "58724", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "terrain", "matchTextDirection": "false" }, { "codePoint": "57954", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_fields", "matchTextDirection": "false" }, { "codePoint": "57701", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_format", "matchTextDirection": "false" }, { "codePoint": "59706", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_rotate_up", "matchTextDirection": "false" }, { "codePoint": "59707", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_rotate_vertical", "matchTextDirection": "false" }, { "codePoint": "59708", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_rotation_angledown", "matchTextDirection": "false" }, { "codePoint": "59709", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_rotation_angleup", "matchTextDirection": "false" }, { "codePoint": "59710", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_rotation_down", "matchTextDirection": "false" }, { "codePoint": "59711", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "text_rotation_none", "matchTextDirection": "false" }, { "codePoint": "57560", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "textsms", "matchTextDirection": "false" }, { "codePoint": "58401", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "texture", "matchTextDirection": "false" }, { "codePoint": "59610", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "theaters", "matchTextDirection": "false" }, { "codePoint": "59611", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "thumb_down", "matchTextDirection": "false" }, { "codePoint": "59612", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "thumb_up", "matchTextDirection": "false" }, { "codePoint": "59613", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "thumbs_up_down", "matchTextDirection": "false" }, { "codePoint": "58924", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "time_to_leave", "matchTextDirection": "false" }, { "codePoint": "58402", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "timelapse", "matchTextDirection": "false" }, { "codePoint": "59682", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "timeline", "matchTextDirection": "false" }, { "codePoint": "58405", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "timer", "matchTextDirection": "false" }, { "codePoint": "58403", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "timer_10", "matchTextDirection": "false" }, { "codePoint": "58404", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "timer_3", "matchTextDirection": "false" }, { "codePoint": "58406", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "timer_off", "matchTextDirection": "false" }, { "codePoint": "57956", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "title", "matchTextDirection": "false" }, { "codePoint": "59614", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "toc", "matchTextDirection": "true" }, { "codePoint": "59615", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "today", "matchTextDirection": "false" }, { "codePoint": "59616", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "toll", "matchTextDirection": "false" }, { "codePoint": "58407", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tonality", "matchTextDirection": "false" }, { "codePoint": "59667", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "touch_app", "matchTextDirection": "false" }, { "codePoint": "58162", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "toys", "matchTextDirection": "false" }, { "codePoint": "59617", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "track_changes", "matchTextDirection": "false" }, { "codePoint": "58725", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "traffic", "matchTextDirection": "false" }, { "codePoint": "58736", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "train", "matchTextDirection": "false" }, { "codePoint": "58737", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tram", "matchTextDirection": "false" }, { "codePoint": "58738", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "transfer_within_a_station", "matchTextDirection": "false" }, { "codePoint": "58408", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "transform", "matchTextDirection": "false" }, { "codePoint": "58745", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "transit_enterexit", "matchTextDirection": "false" }, { "codePoint": "59618", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "translate", "matchTextDirection": "false" }, { "codePoint": "59619", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "trending_down", "matchTextDirection": "true" }, { "codePoint": "59620", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "trending_flat", "matchTextDirection": "true" }, { "codePoint": "59621", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "trending_up", "matchTextDirection": "true" }, { "codePoint": "58747", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "trip_origin", "matchTextDirection": "false" }, { "codePoint": "58409", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tune", "matchTextDirection": "false" }, { "codePoint": "59622", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "turned_in", "matchTextDirection": "false" }, { "codePoint": "59623", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "turned_in_not", "matchTextDirection": "false" }, { "codePoint": "58163", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "tv", "matchTextDirection": "false" }, { "codePoint": "57705", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "unarchive", "matchTextDirection": "false" }, { "codePoint": "57702", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "undo", "matchTextDirection": "true" }, { "codePoint": "58838", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "unfold_less", "matchTextDirection": "false" }, { "codePoint": "58839", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "unfold_more", "matchTextDirection": "false" }, { "codePoint": "59683", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "update", "matchTextDirection": "false" }, { "codePoint": "57824", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "usb", "matchTextDirection": "false" }, { "codePoint": "59624", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "verified_user", "matchTextDirection": "false" }, { "codePoint": "57944", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vertical_align_bottom", "matchTextDirection": "false" }, { "codePoint": "57945", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vertical_align_center", "matchTextDirection": "false" }, { "codePoint": "57946", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vertical_align_top", "matchTextDirection": "false" }, { "codePoint": "58925", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vibration", "matchTextDirection": "false" }, { "codePoint": "57456", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "video_call", "matchTextDirection": "false" }, { "codePoint": "57457", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "video_label", "matchTextDirection": "false" }, { "codePoint": "57418", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "video_library", "matchTextDirection": "false" }, { "codePoint": "57419", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "videocam", "matchTextDirection": "false" }, { "codePoint": "57420", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "videocam_off", "matchTextDirection": "false" }, { "codePoint": "58168", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "videogame_asset", "matchTextDirection": "false" }, { "codePoint": "59625", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_agenda", "matchTextDirection": "false" }, { "codePoint": "59626", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_array", "matchTextDirection": "false" }, { "codePoint": "59627", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_carousel", "matchTextDirection": "false" }, { "codePoint": "59628", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_column", "matchTextDirection": "false" }, { "codePoint": "58410", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_comfy", "matchTextDirection": "false" }, { "codePoint": "58411", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_compact", "matchTextDirection": "false" }, { "codePoint": "59629", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_day", "matchTextDirection": "false" }, { "codePoint": "59630", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_headline", "matchTextDirection": "false" }, { "codePoint": "59631", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_list", "matchTextDirection": "true" }, { "codePoint": "59632", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_module", "matchTextDirection": "false" }, { "codePoint": "59633", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_quilt", "matchTextDirection": "true" }, { "codePoint": "59634", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_stream", "matchTextDirection": "false" }, { "codePoint": "59635", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "view_week", "matchTextDirection": "false" }, { "codePoint": "58421", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vignette", "matchTextDirection": "false" }, { "codePoint": "59636", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "visibility", "matchTextDirection": "false" }, { "codePoint": "59637", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "visibility_off", "matchTextDirection": "false" }, { "codePoint": "58926", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "voice_chat", "matchTextDirection": "false" }, { "codePoint": "57561", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "voicemail", "matchTextDirection": "false" }, { "codePoint": "57421", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "volume_down", "matchTextDirection": "false" }, { "codePoint": "57422", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "volume_mute", "matchTextDirection": "false" }, { "codePoint": "57423", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "volume_off", "matchTextDirection": "false" }, { "codePoint": "57424", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "volume_up", "matchTextDirection": "false" }, { "codePoint": "57562", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vpn_key", "matchTextDirection": "false" }, { "codePoint": "58927", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "vpn_lock", "matchTextDirection": "false" }, { "codePoint": "57788", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wallpaper", "matchTextDirection": "false" }, { "codePoint": "57346", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "warning", "matchTextDirection": "false" }, { "codePoint": "58164", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "watch", "matchTextDirection": "false" }, { "codePoint": "59684", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "watch_later", "matchTextDirection": "false" }, { "codePoint": "58412", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wb_auto", "matchTextDirection": "false" }, { "codePoint": "58413", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wb_cloudy", "matchTextDirection": "false" }, { "codePoint": "58414", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wb_incandescent", "matchTextDirection": "false" }, { "codePoint": "58422", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wb_iridescent", "matchTextDirection": "false" }, { "codePoint": "58416", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wb_sunny", "matchTextDirection": "false" }, { "codePoint": "58941", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wc", "matchTextDirection": "false" }, { "codePoint": "57425", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "web", "matchTextDirection": "false" }, { "codePoint": "57449", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "web_asset", "matchTextDirection": "false" }, { "codePoint": "57707", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "weekend", "matchTextDirection": "false" }, { "codePoint": "59406", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "whatshot", "matchTextDirection": "false" }, { "codePoint": "57789", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "widgets", "matchTextDirection": "false" }, { "codePoint": "58942", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wifi", "matchTextDirection": "false" }, { "codePoint": "57825", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wifi_lock", "matchTextDirection": "false" }, { "codePoint": "57826", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wifi_tethering", "matchTextDirection": "false" }, { "codePoint": "59641", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "work", "matchTextDirection": "false" }, { "codePoint": "57947", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "wrap_text", "matchTextDirection": "true" }, { "codePoint": "59642", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "youtube_searched_for", "matchTextDirection": "false" }, { "codePoint": "59647", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "zoom_in", "matchTextDirection": "false" }, { "codePoint": "59648", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "zoom_out", "matchTextDirection": "false" }, { "codePoint": "58731", "fontFamily": "MaterialIcons", "fontPackage": "null", + "iconName": "zoom_out_map", "matchTextDirection": "false" } ] diff --git a/test/edit_page_task_logic_test.dart b/test/edit_page_task_logic_test.dart index acf25c7..6f91ef9 100644 --- a/test/edit_page_task_logic_test.dart +++ b/test/edit_page_task_logic_test.dart @@ -3,6 +3,12 @@ import 'package:test/test.dart'; void main(){ + //将当前item置于顶层 + void moveToTop(int index, List list){ + final item = list[index]; + list.removeAt(index); + list.insert(0, item); + } test("测试时间转换", (){ @@ -13,4 +19,8 @@ void main(){ DateTime after = DateTime.parse(time); print("转换后:${after}"); }); + + test("置于顶层", (){ + moveToTop(3, [1,2,3,4,5,6]); + }); } \ No newline at end of file diff --git a/test/file_to_json_test.dart b/test/file_to_json_test.dart index 7f991c5..977b5a5 100644 --- a/test/file_to_json_test.dart +++ b/test/file_to_json_test.dart @@ -3,6 +3,7 @@ import 'dart:io'; import 'package:flutter/material.dart'; import 'package:test/test.dart'; import 'package:todo_list/json/task_icon_bean.dart'; +import 'package:todo_list/utils/icon_utils.dart'; void main() { test("\n测试获取类中变量\n", () { @@ -20,23 +21,27 @@ void main() { }); - Map toMap(IconData icon) { + Map toMap(IconData icon, String name) { return { '\"codePoint\"': "\"${icon.codePoint}\"", '\"fontFamily\"': "\"${icon.fontFamily}\"", '\"fontPackage\"': "\"${icon.fontPackage}\"", + '\"iconName\"': "\"${name}\"", '\"matchTextDirection\"': "\"${icon.matchTextDirection}\"" }; //把list转换为string的时候不要直接使用tostring,要用jsonEncode } -// -// test("测试icondata转换", (){ -// final list = IconListUtil.getInstance().icons; -// List> jsons = List.generate(list.length, (index){ -// return toMap(list[index]); -// }); -// print("数据:${jsons}"); -// }); + + test("测试icondata转换", (){ + final list = IconUtil.getInstance().icons; + print("icons:\n${list.toString()}"); + + + List> jsons = List.generate(list.length, (index){ + return toMap(list[index], IconUtil.getInstance().iconNames[index]); + }); + print("数据:\n${jsons}"); + }); test("本地json转换测试", (){