'Integrating MetaMask with Flutter Mobile Application

I want to add feature in my mobile app to send ether from one address to another address and for this I need to integrate metamask with my flutter mobile application. What package can I use for this purpose? I want to send ether through metamask but using UI of my application. How can I do this. Hoping I am clear what I stated



Solution 1:[1]

In flutter, there is web3dart that works for mobile app

https://github.com/simolus3/web3dart

In react, there is moralis

https://github.com/MoralisWeb3/react-moralis

Solution 2:[2]

Metamask supports WalletConnect protocol so you can use walletconnect_dart package to connect your app to Metamask wallet and then use the same package to sign/send transactions signed by Metamask.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Tom