Skip to content

Commit fc436b3

Browse files
authored
Merge pull request #21 from CodingFactory-Repos/feature/plate
Feature/plate
2 parents 63313d4 + 7374e00 commit fc436b3

File tree

16 files changed

+621
-239
lines changed

16 files changed

+621
-239
lines changed

babel.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
module.exports = {
22
presets: ['module:@react-native/babel-preset'],
3+
plugins: ['react-native-reanimated/plugin'],
34
};

ios/Podfile.lock

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,10 +1115,21 @@ PODS:
11151115
- React-perflogger (= 0.73.5)
11161116
- RNCAsyncStorage (1.22.3):
11171117
- React-Core
1118+
- RNGestureHandler (2.15.0):
1119+
- glog
1120+
- RCT-Folly (= 2022.05.16.00)
1121+
- React-Core
1122+
- RNReanimated (3.7.1):
1123+
- glog
1124+
- RCT-Folly (= 2022.05.16.00)
1125+
- React-Core
1126+
- ReactCommon/turbomodule/core
11181127
- RNScreens (3.29.0):
11191128
- glog
11201129
- RCT-Folly (= 2022.05.16.00)
11211130
- React-Core
1131+
- RNSVG (15.0.0):
1132+
- React-Core
11221133
- RNVectorIcons (10.0.3):
11231134
- glog
11241135
- RCT-Folly (= 2022.05.16.00)
@@ -1205,7 +1216,10 @@ DEPENDENCIES:
12051216
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
12061217
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
12071218
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
1219+
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
1220+
- RNReanimated (from `../node_modules/react-native-reanimated`)
12081221
- RNScreens (from `../node_modules/react-native-screens`)
1222+
- RNSVG (from `../node_modules/react-native-svg`)
12091223
- RNVectorIcons (from `../node_modules/react-native-vector-icons`)
12101224
- VisionCamera (from `../node_modules/react-native-vision-camera`)
12111225
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
@@ -1326,8 +1340,14 @@ EXTERNAL SOURCES:
13261340
:path: "../node_modules/react-native/ReactCommon"
13271341
RNCAsyncStorage:
13281342
:path: "../node_modules/@react-native-async-storage/async-storage"
1343+
RNGestureHandler:
1344+
:path: "../node_modules/react-native-gesture-handler"
1345+
RNReanimated:
1346+
:path: "../node_modules/react-native-reanimated"
13291347
RNScreens:
13301348
:path: "../node_modules/react-native-screens"
1349+
RNSVG:
1350+
:path: "../node_modules/react-native-svg"
13311351
RNVectorIcons:
13321352
:path: "../node_modules/react-native-vector-icons"
13331353
VisionCamera:
@@ -1397,7 +1417,10 @@ SPEC CHECKSUMS:
13971417
React-utils: 987a4526a2fc0acdfaf87888adfe0bf9d0452066
13981418
ReactCommon: 2947b0bffd82ea0e58ca7928881152d4c6dae9af
13991419
RNCAsyncStorage: 10591b9e0a91eaffee14e69b3721009759235125
1420+
RNGestureHandler: 67fb54b3e6ca338a8044e85cd6f340265aa41091
1421+
RNReanimated: 15a855719335a6b655a214531e86d806edfd49da
14001422
RNScreens: 17e2f657f1b09a71ec3c821368a04acbb7ebcb46
1423+
RNSVG: 3f65a03e0c61a8495dee92bf82545ed9041cbf3b
14011424
RNVectorIcons: 73ab573085f65a572d3b6233e68996d4707fd505
14021425
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
14031426
VisionCamera: 7a5c87805b13adaaa557132b44879ed1e1e39786

package-lock.json

Lines changed: 121 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,21 @@
1111
"test": "jest"
1212
},
1313
"dependencies": {
14+
"@gorhom/bottom-sheet": "^4.6.1",
1415
"@react-native-async-storage/async-storage": "^1.22.2",
1516
"@react-navigation/bottom-tabs": "^6.5.14",
1617
"@react-navigation/native": "^6.1.12",
1718
"@react-navigation/native-stack": "^6.9.20",
1819
"@reduxjs/toolkit": "^2.2.1",
1920
"react": "18.2.0",
2021
"react-native": "^0.73.5",
22+
"react-native-gesture-handler": "^2.15.0",
2123
"react-native-heroicons": "^4.0.0",
2224
"react-native-logs": "^5.1.0",
25+
"react-native-reanimated": "^3.7.1",
2326
"react-native-safe-area-context": "^4.9.0",
2427
"react-native-screens": "^3.29.0",
28+
"react-native-svg": "^15.0.0",
2529
"react-native-vector-icons": "^10.0.3",
2630
"react-native-vision-camera": "^3.9.0",
2731
"react-redux": "^9.1.0"

0 commit comments

Comments
 (0)