From 1a0d47d5c7acde98b10d9919b106bc25ba417987 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Wed, 26 Jul 2023 17:06:36 -0500 Subject: [PATCH] add placeholder asset robothead --- lib/utilities/assets.dart | 1 + .../components/icons/fusion_nav_icon.dart | 28 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 lib/widgets/wallet_navigation_bar/components/icons/fusion_nav_icon.dart diff --git a/lib/utilities/assets.dart b/lib/utilities/assets.dart index b8ec501e8..80c040edf 100644 --- a/lib/utilities/assets.dart +++ b/lib/utilities/assets.dart @@ -188,6 +188,7 @@ class _SVG { String get arrowDown => "assets/svg/arrow-down.svg"; String get robotHead => "assets/svg/robot-head.svg"; String get whirlPool => "assets/svg/whirlpool.svg"; + String get cashFusion => "assets/svg/whirlpool.svg"; String get fingerprint => "assets/svg/fingerprint.svg"; String get faceId => "assets/svg/faceid.svg"; String get tokens => "assets/svg/tokens.svg"; diff --git a/lib/widgets/wallet_navigation_bar/components/icons/fusion_nav_icon.dart b/lib/widgets/wallet_navigation_bar/components/icons/fusion_nav_icon.dart new file mode 100644 index 000000000..ce1d4bef0 --- /dev/null +++ b/lib/widgets/wallet_navigation_bar/components/icons/fusion_nav_icon.dart @@ -0,0 +1,28 @@ +/* + * This file is part of Stack Wallet. + * + * Copyright (c) 2023 Cypher Stack + * All Rights Reserved. + * The code is distributed under GPLv3 license, see LICENSE file for details. + * Generated by Cypher Stack on 2023-05-26 + * + */ + +import 'package:flutter/material.dart'; +import 'package:flutter_svg/flutter_svg.dart'; +import 'package:stackwallet/themes/stack_colors.dart'; +import 'package:stackwallet/utilities/assets.dart'; + +class FusionNavIcon extends StatelessWidget { + const FusionNavIcon({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return SvgPicture.asset( + Assets.svg.cashFusion, + height: 20, + width: 20, + color: Theme.of(context).extension()!.bottomNavIconIcon, + ); + } +}