diff --git a/assets/images/dark/ethereum.svg b/assets/images/dark/ethereum.svg new file mode 100644 index 000000000..df9a44d1e --- /dev/null +++ b/assets/images/dark/ethereum.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/fruitSorbet/ethereum.svg b/assets/images/fruitSorbet/ethereum.svg new file mode 100644 index 000000000..df9a44d1e --- /dev/null +++ b/assets/images/fruitSorbet/ethereum.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/light/ethereum.svg b/assets/images/light/ethereum.svg new file mode 100644 index 000000000..df9a44d1e --- /dev/null +++ b/assets/images/light/ethereum.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/oceanBreeze/ethereum.svg b/assets/images/oceanBreeze/ethereum.svg new file mode 100644 index 000000000..df9a44d1e --- /dev/null +++ b/assets/images/oceanBreeze/ethereum.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/images/oledBlack/ethereum.svg b/assets/images/oledBlack/ethereum.svg new file mode 100644 index 000000000..df9a44d1e --- /dev/null +++ b/assets/images/oledBlack/ethereum.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/utilities/assets.dart b/lib/utilities/assets.dart index 310848543..20d70cee9 100644 --- a/lib/utilities/assets.dart +++ b/lib/utilities/assets.dart @@ -294,6 +294,8 @@ class _SVG { "assets/images/${Theme.of(context).extension()!.themeType.name}/doge.svg"; String epicCashImage(BuildContext context) => "assets/images/${Theme.of(context).extension()!.themeType.name}/epic-cash.svg"; + String ethereumImage(BuildContext context) => + "assets/images/${Theme.of(context).extension()!.themeType.name}/ethereum.svg"; String firoImage(BuildContext context) => "assets/images/${Theme.of(context).extension()!.themeType.name}/firo.svg"; String litecoinImage(BuildContext context) => @@ -339,7 +341,7 @@ class _SVG { case Coin.dogecoinTestNet: return dogecoinImage(context); case Coin.ethereum: - return ethereum; + return ethereumImage(context); } } }