Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .changeset/thin-files-play.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
'@reown/appkit-scaffold-react-native': patch
'@reown/appkit-auth-ethers-react-native': patch
'@reown/appkit-auth-wagmi-react-native': patch
'@reown/appkit-coinbase-ethers-react-native': patch
'@reown/appkit-coinbase-wagmi-react-native': patch
'@reown/appkit-common-react-native': patch
'@reown/appkit-core-react-native': patch
'@reown/appkit-ethers-react-native': patch
'@reown/appkit-ethers5-react-native': patch
'@reown/appkit-scaffold-utils-react-native': patch
'@reown/appkit-siwe-react-native': patch
'@reown/appkit-ui-react-native': patch
'@reown/appkit-wagmi-react-native': patch
'@reown/appkit-wallet-react-native': patch
---

fix: disable coverscreen on root modal to solve issues with expo-router
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/apps
.yarn
1 change: 0 additions & 1 deletion .tool-versions

This file was deleted.

8 changes: 4 additions & 4 deletions apps/native/app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"expo": {
"name": "native",
"slug": "appkit-expo-sample",
"slug": "appkit",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icon.png",
Expand All @@ -19,7 +19,7 @@
"runtimeVersion": {
"policy": "appVersion"
},
"owner": "nacho.walletconnect",
"owner": "nacho.reown",
"assetBundlePatterns": ["**/*"],
"plugins": ["./expo-plugins/installed-wallets.js"],
"ios": {
Expand Down Expand Up @@ -68,7 +68,7 @@
},
"android": {
"versionCode": 1,
"package": "com.walletconnect.web3modal.rnsdk",
"package": "com.reown.appkit.expo",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
Expand All @@ -84,7 +84,7 @@
},
"extra": {
"eas": {
"projectId": "2d3ad657-c612-4f65-ba0f-62c277388fa6"
"projectId": "2325cd86-ac2f-4ecc-a094-6bb2276f2e8a"
}
}
}
Expand Down
4 changes: 1 addition & 3 deletions packages/scaffold/src/modal/w3m-modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
TransactionsController,
type CaipAddress,
type AppKitFrameProvider,
WebviewController,
ThemeController
} from '@reown/appkit-core-react-native';
import { SIWEController } from '@reown/appkit-siwe-react-native';
Expand All @@ -31,7 +30,6 @@ export function AppKit() {
const { open, loading } = useSnapshot(ModalController.state);
const { connectors, connectedConnector } = useSnapshot(ConnectorController.state);
const { caipAddress, isConnected } = useSnapshot(AccountController.state);
const { frameViewVisible, webviewVisible } = useSnapshot(WebviewController.state);
const { themeMode, themeVariables } = useSnapshot(ThemeController.state);
const { height } = useWindowDimensions();
const { isLandscape } = useCustomDimensions();
Expand Down Expand Up @@ -121,7 +119,7 @@ export function AppKit() {
<ThemeProvider themeMode={themeMode} themeVariables={themeVariables}>
<Modal
style={styles.modal}
coverScreen={!frameViewVisible && !webviewVisible}
coverScreen={false}
isVisible={open}
useNativeDriver
useNativeDriverForBackdrop
Expand Down