https://metamask.io/↗ start enjoying the convenience of tracking and managing your web3 everything, all in one place. 웹3.0의 모든 것을 한 곳에서 추적하고 관리할 수 있습니다.
https://reown.com/↗ Reown gives developers the tools to build user experiences that make digital ownership effortless, intuitive, and secure. 개발자에게 디지털 소유권을 쉽고, 직관적이고, 안전하게 만드는 도구를 제공합니다.
flutter pub add reown_appkit
/ios/Podfile
파일의 상단에 주석 처리 되어있는 platform :ios, 'xx.0'
주석을 해제한 후 13.0 이상의 버전을 설정합니다.
만약, 주석 처리 되어있는 라인이 없다면 상단에 추가 해 주세요.platform :ios, '13.0'
cd ios
pod install
/ios/Runner/Info.plist
파일을 열어 원하는 지갑을 추가합니다.
추가적으로 url scheme을 설정해야 합니다. 임의의 소문자로 이루어진 문자열을 입력합니다. 여기서는 exampleapp
을 입력하겠습니다. 뒤에서 사용하니 기억해주세요!!
앱의 Bundle ID를 입력합니다. 여기서는 com.example.yourBundleId
를 입력하겠습니다.<dict>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>metamask</string> <!-- 지갑 이름 -->
<!-- 다른 지갑 이름을 추가할 수 있습니다 -->
</array>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>com.example.yourBundleId</string> <!-- 앱의 Bundle ID -->
<key>CFBundleURLSchemes</key>
<array>
<string>exampleapp</string> <!-- 임의의 소문자로 이루어진 문자열 -->
</array>
</dict>
</array>
</dict>
/android/app/src/main/AndroidManifest.xml
파일을 열어 원하는 지갑을 추가합니다.
추가적으로 안드로이드도 url scheme을 설정해야 합니다. 임의의 소문자로 이루어진 문자열을 입력합니다. 여기서는 exampleapp
을 입력하겠습니다. 뒤에서 사용하니 기억해주세요!!<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity > <!-- 태그 속성 생략 -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="exampleapp" /> <!-- 임의의 소문자로 이루어진 문자열 -->
</intent-filter>
</activity>
</application>
<!-- ... -->
<queries>
<package android:name="io.metamask"/> <!-- 지갑 이름 -->
<!-- 다른 지갑 이름을 추가할 수 있습니다 -->
</queries>
</manifest>
📦 lib
┣ 📜 page_wallet.dart
┗ 📜 main.dart
import 'package:reown_appkit/reown_appkit.dart';
class PageWallet extends StatefulWidget {
const PageWallet({super.key});
@override
State<PageWallet> createState() => _PageWalletState();
}
class _PageWalletState extends State<PageWallet> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Wallet'),
),
);
}
}
_PageWalletState
클래스에서 @override
메서드를 재정의합니다.
이 때, 위에서 정의했던 url scheme을 사용합니다. 여기서는 exampleapp
이겠죠? 나머지 항목은 key에 맞는 값을 입력합니다.// _PageWalletState 클래스 내부
late ReownAppKitModal appKitModal;
@override
void initState() {
super.initState();
appKitModal = ReownAppKitModal(
context: context,
projectId: '{YOUR_PROJECT_ID}', // 프로젝트 ID 입력
metadata: const PairingMetadata(
name: 'Example App',
description: 'Example app description',
url: 'https://example.com/',
icons: ['https://example.com/logo.png'],
redirect: Redirect( // OPTIONAL 이지만 (준)필수인 항목입니다
native: 'exampleapp://', // 위에서 정의한 url scheme
universal: 'https://reown.com/exampleapp',
linkMode: true|false,
),
),
);
appKitModal.init().then((value) => setState(() {}));
}
// ...
// _PageWalletState 클래스 내부
String address = "none";
late ReownAppKitModal appKitModal;
@override
void initState() {
super.initState();
appKitModal = ReownAppKitModal(
context: context,
projectId: '{YOUR_PROJECT_ID}', // 프로젝트 ID 입력
metadata: const PairingMetadata(
name: 'Example App',
description: 'Example app description',
url: 'https://example.com/',
icons: ['https://example.com/logo.png'],
redirect: Redirect( // OPTIONAL 이지만 (준)필수인 항목입니다
native: 'exampleapp://', // 위에서 정의한 url scheme
universal: 'https://reown.com/exampleapp',
linkMode: true|false,
),
),
);
appKitModal.init();
appKitModal.addListener(updateAddress);
}
void updateAddress() {
setState(() {
address = appKitModal.session
?.getAddress(ReownAppKitModalNetworks.getNamespaceForChainId(
appKitModal.selectedChain?.chainId ?? "1",
)) ??
"none";
});
}
// ...
// _PageWalletState 클래스 내부
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Center(
child: Stack(
children: [
Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
AppKitModalNetworkSelectButton(
appKit: appKitModal,
context: context,
),
AppKitModalConnectButton(
appKit: appKitModal,
context: context,
),
AppKitModalAccountButton(
appKitModal: appKitModal,
),
AppKitModalAddressButton(
appKitModal: appKitModal,
onTap: appKitModal.openModalView,
),
Text(address),
],
),
],
),
),
);
}