Skip to content

Commit 19e922b

Browse files
committed
fixes keyboard overlapping the input element
1 parent 2008fa1 commit 19e922b

File tree

13 files changed

+2058
-4902
lines changed

13 files changed

+2058
-4902
lines changed

apps/playground/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ node_modules/
77
.expo/
88
dist/
99
web-build/
10+
expo-env.d.ts
1011

1112
# Native
13+
.kotlin/
1214
*.orig.*
1315
*.jks
1416
*.p8

apps/playground/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node-linker=hoisted

apps/playground/assets/splash.png

-29.1 KB
Loading

apps/playground/babel.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

apps/playground/index.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

apps/playground/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { registerRootComponent } from "expo";
2+
3+
import App from "./src/app";
4+
5+
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
6+
// It also ensures that whether you load the app in Expo Go or in a native build,
7+
// the environment is set up appropriately
8+
registerRootComponent(App);

apps/playground/metro.config.js

Lines changed: 0 additions & 21 deletions
This file was deleted.

apps/playground/package.json

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,25 @@
11
{
2-
"name": "@formbricks/demo-react-native",
2+
"name": "playground",
33
"version": "1.0.0",
4-
"main": "./index.js",
4+
"main": "index.ts",
55
"scripts": {
6-
"dev": "expo start",
6+
"dev": "expo start --reset-cache",
77
"android": "expo start --android",
88
"ios": "expo start --ios",
9-
"web": "expo start --web",
10-
"eject": "expo eject",
119
"clean": "rimraf .turbo node_modules .expo"
1210
},
1311
"dependencies": {
1412
"@formbricks/react-native": "workspace:*",
15-
"@react-native-async-storage/async-storage": "2.1.0",
16-
"expo": "52.0.28",
17-
"expo-status-bar": "2.0.1",
18-
"react": "18.3.1",
19-
"react-dom": "18.3.1",
20-
"react-native": "0.76.6",
21-
"react-native-webview": "13.12.5"
13+
"@react-native-async-storage/async-storage": "2.1.2",
14+
"expo": "~53.0.13",
15+
"expo-status-bar": "~2.2.3",
16+
"react": "19.0.0",
17+
"react-native": "0.79.4"
2218
},
2319
"devDependencies": {
24-
"@babel/core": "7.26.0",
25-
"@types/react": "18.3.18",
26-
"eslint": "8.57.0",
27-
"typescript": "5.7.2"
20+
"@babel/core": "^7.25.2",
21+
"@types/react": "~19.0.10",
22+
"typescript": "~5.8.3"
2823
},
2924
"private": true
3025
}

apps/playground/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2+
"extends": "expo/tsconfig.base",
23
"compilerOptions": {
34
"strict": true
4-
},
5-
"extends": "expo/tsconfig.base"
5+
}
66
}

packages/react-native/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
"zod": "3.24.1"
4646
},
4747
"devDependencies": {
48-
"@types/react": "18.3.1",
48+
"@types/react": "19.0.14",
4949
"@vercel/style-guide": "6.0.0",
5050
"@vitest/coverage-v8": "3.1.1",
51-
"react": "18.3.1",
52-
"react-native": "0.74.5",
51+
"react": "19.0.0",
52+
"react-native": "0.79.4",
5353
"terser": "5.37.0",
5454
"vite": "6.2.5",
5555
"vite-plugin-dts": "4.5.3",

0 commit comments

Comments
 (0)