From a96717d2e7dc15675783d8a935ff80a1afdf3ee7 Mon Sep 17 00:00:00 2001 From: Alaa Elattar Date: Thu, 29 May 2025 13:35:04 +0300 Subject: [PATCH 1/2] add divider before after kyc --- app/lib/screens/wallets/wallet_info.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/lib/screens/wallets/wallet_info.dart b/app/lib/screens/wallets/wallet_info.dart index cc2465e49..d38b5ab0f 100644 --- a/app/lib/screens/wallets/wallet_info.dart +++ b/app/lib/screens/wallets/wallet_info.dart @@ -402,6 +402,7 @@ class _WalletDetailsWidgetState extends ConsumerState { ), ), const SizedBox(height: 40), + const Divider(height: 20, thickness: 1), if (widget.wallet.type == WalletType.IMPORTED) Center( child: SizedBox( @@ -412,7 +413,7 @@ class _WalletDetailsWidgetState extends ConsumerState { backgroundColor: Theme.of(context).colorScheme.errorContainer), child: Text( - 'Delete', + 'Delete Wallet', style: Theme.of(context).textTheme.bodyLarge!.copyWith( color: Theme.of(context) From 9b3b7535a3bc26223b6cd8c2c989c2f56e165526 Mon Sep 17 00:00:00 2001 From: Alaa Elattar Date: Thu, 29 May 2025 13:48:52 +0300 Subject: [PATCH 2/2] remove divider --- app/lib/screens/wallets/wallet_info.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/app/lib/screens/wallets/wallet_info.dart b/app/lib/screens/wallets/wallet_info.dart index d38b5ab0f..01e1bb56a 100644 --- a/app/lib/screens/wallets/wallet_info.dart +++ b/app/lib/screens/wallets/wallet_info.dart @@ -402,7 +402,6 @@ class _WalletDetailsWidgetState extends ConsumerState { ), ), const SizedBox(height: 40), - const Divider(height: 20, thickness: 1), if (widget.wallet.type == WalletType.IMPORTED) Center( child: SizedBox(