2023-05-11 22:24:25 +00:00
|
|
|
abstract class Assets {
|
|
|
|
static const svg = _SVG();
|
|
|
|
static const png = _PNG();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PNG {
|
|
|
|
const _PNG();
|
|
|
|
|
|
|
|
// String get drifterIcon => "assets/images/logo/drifter_vector.png";
|
|
|
|
}
|
|
|
|
|
|
|
|
class _SVG {
|
|
|
|
const _SVG();
|
|
|
|
|
|
|
|
String get drifterIcon => "assets/images/logo/drifter_logo_circle.svg";
|
2023-05-25 13:07:26 +00:00
|
|
|
String get welcomeImage => "assets/images/logo/welcome.svg";
|
2023-05-11 22:24:25 +00:00
|
|
|
}
|