Last active
July 10, 2020 16:05
-
-
Save mukireus/2ae546204186b00ea8caa8e98d1f80c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:mdi/mdi.dart'; | |
class AppIcons { | |
// Icons | |
static const IconData location = Icons.location_on; | |
static const IconData home = Icons.home; | |
static const IconData notification = Icons.notifications; | |
static const IconData settings = Icons.settings; | |
static const IconData navigateNext = Icons.navigate_next; | |
static const IconData dropdown = Icons.arrow_drop_down; | |
static const IconData moon = Mdi.moonWaningCrescent; | |
// #Icons | |
// Svg icon path | |
static const String imsakSVG = "assets/svg/imsak.svg"; | |
static const String sunSVG = "assets/svg/sunrise.svg"; | |
static const String noonSVG = "assets/svg/sun.svg"; | |
static const String afternoonSVG = "assets/svg/sunFill.svg"; | |
static const String eveningSVG = "assets/svg/sunset.svg"; | |
// #Svg icon path | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment