mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-30 20:24:25 +00:00
44 lines
2.4 KiB
Dart
44 lines
2.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LunaIcons {
|
|
static const IconData ADD = Icons.add_rounded;
|
|
static const IconData ARROW_RIGHT = Icons.arrow_forward_ios_rounded;
|
|
static const IconData ARROW_DROPDOWN = Icons.arrow_drop_down_rounded;
|
|
static const IconData BUILD_BUCKET = Icons.downloading_rounded;
|
|
static const IconData BUILD_CHANNELS = Icons.rocket_launch_rounded;
|
|
static const IconData CLOUD_DELETE = Icons.cloud_off_rounded;
|
|
static const IconData CLOUD_DOWNLOAD = Icons.cloud_download_rounded;
|
|
static const IconData CLOUD_UPLOAD = Icons.cloud_upload_rounded;
|
|
static const IconData CONNECTION_TEST = Icons.wifi_tethering_rounded;
|
|
static const IconData DELETE = Icons.delete_rounded;
|
|
static const IconData DEVICES = Icons.devices_rounded;
|
|
static const IconData DOCUMENTATION = Icons.auto_stories_rounded;
|
|
static const IconData DOWNLOAD = Icons.file_download_rounded;
|
|
static const IconData EMAIL = Icons.email_rounded;
|
|
static const IconData ERROR = Icons.error_rounded;
|
|
static const IconData FEEDBACK = Icons.speaker_notes_rounded;
|
|
static const IconData FILTER = Icons.filter_list_rounded;
|
|
static const IconData HISTORY = Icons.history_rounded;
|
|
static const IconData HOME = Icons.home_rounded;
|
|
static const IconData MONITOR_OFF = Icons.turned_in_not_rounded;
|
|
static const IconData MONITOR_ON = Icons.turned_in_rounded;
|
|
static const IconData MUSIC = Icons.music_note_rounded;
|
|
static const IconData PASSWORD = Icons.vpn_key_rounded;
|
|
static const IconData PLAY = Icons.play_arrow_rounded;
|
|
static const IconData PROFILES = Icons.switch_account_rounded;
|
|
static const IconData REFRESH = Icons.refresh_rounded;
|
|
static const IconData RENAME = Icons.text_format_rounded;
|
|
static const IconData REQUESTS = Icons.access_time_rounded;
|
|
static const IconData SEARCH = Icons.search_rounded;
|
|
static const IconData SETTINGS = Icons.settings_rounded;
|
|
static const IconData SHUFFLE = Icons.shuffle_rounded;
|
|
static const IconData SORT = Icons.sort_rounded;
|
|
static const IconData TRANSLATE = Icons.translate_rounded;
|
|
static const IconData USER = Icons.person_rounded;
|
|
static const IconData USERS = Icons.people_rounded;
|
|
static const IconData VIDEO_CAM = Icons.videocam_rounded;
|
|
static const IconData VIEW = Icons.grid_view_rounded;
|
|
static const IconData WARNING = Icons.warning_amber_rounded;
|
|
static const IconData WATCHED = Icons.visibility_rounded;
|
|
}
|