WIP light+dark icons

This commit is contained in:
julian 2022-09-20 18:59:31 -06:00
parent 1ae035bca1
commit 8d69617fd4
15 changed files with 49 additions and 24 deletions

View file

Before

Width:  |  Height:  |  Size: 895 B

After

Width:  |  Height:  |  Size: 895 B

View file

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

Before

Width:  |  Height:  |  Size: 1,020 B

After

Width:  |  Height:  |  Size: 1,020 B

View file

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

View file

Before

Width:  |  Height:  |  Size: 421 B

After

Width:  |  Height:  |  Size: 421 B

View file

Before

Width:  |  Height:  |  Size: 985 B

After

Width:  |  Height:  |  Size: 985 B

View file

Before

Width:  |  Height:  |  Size: 833 B

After

Width:  |  Height:  |  Size: 833 B

View file

Before

Width:  |  Height:  |  Size: 426 B

After

Width:  |  Height:  |  Size: 426 B

View file

@ -1,4 +1,5 @@
import 'package:stackwallet/utilities/enums/coin_enum.dart';
import 'package:stackwallet/utilities/theme/stack_theme.dart';
abstract class Assets {
static const svg = _SVG();
@ -22,8 +23,10 @@ class _SVG {
String get plus => "assets/svg/plus.svg";
String get gear => "assets/svg/gear.svg";
String get bell => "assets/svg/bell.svg";
String get bellNew => "assets/svg/bell-new.svg";
String get stackIcon => "assets/svg/stack-icon1.svg";
String get bellNew =>
"assets/svg/${StackTheme.instance.theme.name}/bell-new.svg";
String get stackIcon =>
"assets/svg/${StackTheme.instance.theme.name}/stack-icon1.svg";
String get arrowLeft => "assets/svg/arrow-left-fa.svg";
String get star => "assets/svg/star.svg";
String get copy => "assets/svg/copy-fa.svg";
@ -35,8 +38,10 @@ class _SVG {
String get bars => "assets/svg/bars.svg";
String get filter => "assets/svg/filter.svg";
String get pending => "assets/svg/pending.svg";
String get exchange => "assets/svg/exchange-2.svg";
String get buy => "assets/svg/buy-coins-icon.svg";
String get exchange =>
"assets/svg/${StackTheme.instance.theme.name}/exchange-2.svg";
String get buy =>
"assets/svg/${StackTheme.instance.theme.name}/buy-coins-icon.svg";
String get radio => "assets/svg/signal-stream.svg";
String get arrowRotate => "assets/svg/arrow-rotate.svg";
String get arrowRotate2 => "assets/svg/arrow-rotate2.svg";
@ -90,20 +95,29 @@ class _SVG {
String get anonymizePending => "assets/svg/tx-icon-anonymize-pending.svg";
String get anonymizeFailed => "assets/svg/tx-icon-anonymize-failed.svg";
String get receive => "assets/svg/tx-icon-receive.svg";
String get receivePending => "assets/svg/tx-icon-receive-pending.svg";
String get receiveCancelled => "assets/svg/tx-icon-receive-failed.svg";
String get receive =>
"assets/svg/${StackTheme.instance.theme.name}/tx-icon-receive.svg";
String get receivePending =>
"assets/svg/${StackTheme.instance.theme.name}/tx-icon-receive-pending.svg";
String get receiveCancelled =>
"assets/svg/${StackTheme.instance.theme.name}/tx-icon-receive-failed.svg";
String get send => "assets/svg/tx-icon-send.svg";
String get sendPending => "assets/svg/tx-icon-send-pending.svg";
String get sendCancelled => "assets/svg/tx-icon-send-failed.svg";
String get send =>
"assets/svg/${StackTheme.instance.theme.name}/tx-icon-send.svg";
String get sendPending =>
"assets/svg/${StackTheme.instance.theme.name}/tx-icon-send-pending.svg";
String get sendCancelled =>
"assets/svg/${StackTheme.instance.theme.name}/tx-icon-send-failed.svg";
String get ellipse1 => "assets/svg/Ellipse-43.svg";
String get ellipse2 => "assets/svg/Ellipse-42.svg";
String get txExchange => "assets/svg/tx-exchange-icon.svg";
String get txExchangePending => "assets/svg/tx-exchange-icon-pending.svg";
String get txExchangeFailed => "assets/svg/tx-exchange-icon-failed.svg";
String get txExchange =>
"assets/svg/${StackTheme.instance.theme.name}/tx-exchange-icon.svg";
String get txExchangePending =>
"assets/svg/${StackTheme.instance.theme.name}/tx-exchange-icon-pending.svg";
String get txExchangeFailed =>
"assets/svg/${StackTheme.instance.theme.name}/tx-exchange-icon-failed.svg";
String get bitcoin => "assets/svg/coin_icons/Bitcoin.svg";
String get dogecoin => "assets/svg/coin_icons/Dogecoin.svg";

View file

@ -190,7 +190,8 @@ flutter:
- assets/svg/plus.svg
- assets/svg/gear.svg
- assets/svg/bell.svg
- assets/svg/bell-new.svg
- assets/svg/light/bell-new.svg
- assets/svg/dark/bell-new.svg
- assets/svg/stack-icon1.svg
- assets/svg/arrow-left-fa.svg
- assets/svg/copy-fa.svg
@ -204,7 +205,8 @@ flutter:
- assets/svg/bars.svg
- assets/svg/filter.svg
- assets/svg/pending.svg
- assets/svg/exchange-2.svg
- assets/svg/dark/exchange-2.svg
- assets/svg/light/exchange-2.svg
- assets/svg/signal-stream.svg
- assets/svg/buy-coins-icon.svg
- assets/svg/Ellipse-43.svg
@ -246,16 +248,25 @@ flutter:
- assets/svg/ellipsis-vertical1.svg
- assets/svg/dice-alt.svg
- assets/svg/circle-arrow-up-right2.svg
- assets/svg/tx-exchange-icon.svg
- assets/svg/tx-exchange-icon-pending.svg
- assets/svg/tx-exchange-icon-failed.svg
- assets/svg/dark/tx-exchange-icon.svg
- assets/svg/light/tx-exchange-icon.svg
- assets/svg/dark/tx-exchange-icon-pending.svg
- assets/svg/light/tx-exchange-icon-pending.svg
- assets/svg/dark/tx-exchange-icon-failed.svg
- assets/svg/light/tx-exchange-icon-failed.svg
- assets/svg/loader.svg
- assets/svg/tx-icon-send.svg
- assets/svg/tx-icon-send-pending.svg
- assets/svg/tx-icon-send-failed.svg
- assets/svg/tx-icon-receive.svg
- assets/svg/tx-icon-receive-pending.svg
- assets/svg/tx-icon-receive-failed.svg
- assets/svg/dark/tx-icon-send.svg
- assets/svg/light/tx-icon-send.svg
- assets/svg/dark/tx-icon-send-pending.svg
- assets/svg/light/tx-icon-send-pending.svg
- assets/svg/dark/tx-icon-send-failed.svg
- assets/svg/light/tx-icon-send-failed.svg
- assets/svg/dark/tx-icon-receive.svg
- assets/svg/light/tx-icon-receive.svg
- assets/svg/dark/tx-icon-receive-pending.svg
- assets/svg/light/tx-icon-receive-pending.svg
- assets/svg/dark/tx-icon-receive-failed.svg
- assets/svg/light/tx-icon-receive-failed.svg
- assets/svg/add-backup.svg
- assets/svg/auto-backup.svg
- assets/svg/restore-backup.svg