From a23ae194719e65f96980bcb1abcaf579d62baf97 Mon Sep 17 00:00:00 2001 From: Alfreedom <00tango.bromine@icloud.com> Date: Mon, 12 Aug 2024 19:25:41 +0200 Subject: [PATCH 1/2] Added Flutter sample wallets --- Example/DApp/SceneDelegate.swift | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Example/DApp/SceneDelegate.swift b/Example/DApp/SceneDelegate.swift index 5d5c3cb62..d750966e8 100644 --- a/Example/DApp/SceneDelegate.swift +++ b/Example/DApp/SceneDelegate.swift @@ -127,6 +127,24 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { mobileLink: "rn-web3wallet://", linkMode: "https://lab.web3modal.com/walletkit_rn" ) + .init( + id: "flutter-sample", + name: "Flutter Sample Wallet", + homepage: "https://walletconnect.com/", + imageUrl: "https://avatars.githubusercontent.com/u/37784886?s=200&v=4", + order: 1, + mobileLink: "wcflutterwallet://", + linkMode: "https://lab.web3modal.com/walletkit_flutter" + ) + .init( + id: "flutter-sample-internal", + name: "Flutter Sample Wallet Internal", + homepage: "https://walletconnect.com/", + imageUrl: "https://avatars.githubusercontent.com/u/37784886?s=200&v=4", + order: 1, + mobileLink: "wcflutterwallet-internal://", + linkMode: "https://lab.web3modal.com/walletkit_flutter_internal" + ) ] ) From 17d9a0acc40825b3b17a770358e9f5ff17eb31c1 Mon Sep 17 00:00:00 2001 From: Alfreedom <00tango.bromine@icloud.com> Date: Mon, 12 Aug 2024 21:01:14 +0200 Subject: [PATCH 2/2] Added a missing comma --- Example/DApp/SceneDelegate.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Example/DApp/SceneDelegate.swift b/Example/DApp/SceneDelegate.swift index d750966e8..f4ed47f2c 100644 --- a/Example/DApp/SceneDelegate.swift +++ b/Example/DApp/SceneDelegate.swift @@ -126,7 +126,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { order: 1, mobileLink: "rn-web3wallet://", linkMode: "https://lab.web3modal.com/walletkit_rn" - ) + ), .init( id: "flutter-sample", name: "Flutter Sample Wallet", @@ -135,7 +135,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { order: 1, mobileLink: "wcflutterwallet://", linkMode: "https://lab.web3modal.com/walletkit_flutter" - ) + ), .init( id: "flutter-sample-internal", name: "Flutter Sample Wallet Internal", @@ -144,7 +144,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { order: 1, mobileLink: "wcflutterwallet-internal://", linkMode: "https://lab.web3modal.com/walletkit_flutter_internal" - ) + ), ] )