Skip to content

Instantly share code, notes, and snippets.

@mukireus
Last active July 10, 2020 16:05
Show Gist options
  • Save mukireus/2ae546204186b00ea8caa8e98d1f80c8 to your computer and use it in GitHub Desktop.
Save mukireus/2ae546204186b00ea8caa8e98d1f80c8 to your computer and use it in GitHub Desktop.
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