From a2039037b67e07ce9bb8eabc2bf2d79caf063939 Mon Sep 17 00:00:00 2001 From: mocodesmo Date: Mon, 15 Apr 2024 20:24:59 +0530 Subject: [PATCH] swap - remove warning button --- lib/receive/receive_page.dart | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/receive/receive_page.dart b/lib/receive/receive_page.dart index 3c5a32bf..d555bc4b 100644 --- a/lib/receive/receive_page.dart +++ b/lib/receive/receive_page.dart @@ -296,6 +296,14 @@ class _Warnings extends StatelessWidget { 3. It is more economical to make fewer swaps of larger amounts than to make many swaps of smaller amounts'''), const Gap(8), const _RemoveWarningMessage(), + const Gap(24), + BBButton.big( + leftIcon: Icons.send_outlined, + label: 'Continue anyways', + onPressed: () { + context.read().removeWarnings(); + }, + ), ], ); }