Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sensor slider example #4330

Merged
merged 11 commits into from
May 15, 2023
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
22 changes: 14 additions & 8 deletions Example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -350,12 +350,14 @@ PODS:
- React-Core
- react-native-pager-view (5.4.24):
- React-Core
- react-native-safe-area-context (4.5.0):
- react-native-safe-area-context (4.5.1):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- ReactCommon/turbomodule/core
- react-native-slider (4.4.2):
- React-Core
- React-NativeModulesApple (0.72.0-rc.1):
- hermes-engine
- React-callinvoker
Expand Down Expand Up @@ -450,9 +452,9 @@ PODS:
- React-perflogger (= 0.72.0-rc.1)
- RNCAsyncStorage (1.18.1):
- React-Core
- RNCMaskedView (0.2.8):
- RNCMaskedView (0.2.9):
- React-Core
- RNCPicker (2.4.9):
- RNCPicker (2.4.10):
- React-Core
- RNGestureHandler (2.9.0):
- React-Core
Expand Down Expand Up @@ -485,7 +487,7 @@ PODS:
- RNScreens (3.20.0):
- React-Core
- React-RCTImage
- RNSVG (13.8.0):
- RNSVG (13.9.0):
- React-Core
- SocketRocket (0.6.0)
- Yoga (1.14.0)
Expand Down Expand Up @@ -540,6 +542,7 @@ DEPENDENCIES:
- react-native-box2d (from `../node_modules/react-native-box2d`)
- react-native-pager-view (from `../node_modules/react-native-pager-view`)
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- "react-native-slider (from `../node_modules/@react-native-community/slider`)"
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
Expand Down Expand Up @@ -628,6 +631,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-pager-view"
react-native-safe-area-context:
:path: "../node_modules/react-native-safe-area-context"
react-native-slider:
:path: "../node_modules/@react-native-community/slider"
React-NativeModulesApple:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
Expand Down Expand Up @@ -710,7 +715,8 @@ SPEC CHECKSUMS:
React-logger: 264ccba40e268580a95fb9d514c315d2ec7339a5
react-native-box2d: a5126c70227755b79a1b5b8d867e3932041631b3
react-native-pager-view: 95d0418c3c74279840abec6926653d32447bafb6
react-native-safe-area-context: 39c2d8be3328df5d437ac1700f4f3a4f75716acc
react-native-safe-area-context: f5549f36508b1b7497434baa0cd97d7e470920d4
react-native-slider: 33b8d190b59d4f67a541061bb91775d53d617d9d
React-NativeModulesApple: 018405f985ae4488c4fe29deaaf2f8fc7a87f5d0
React-perflogger: 0c4141a3eba3fe922d53b98900cfeeefe9d78de0
React-RCTActionSheet: bde19fb7124b692941e772a7c83925bbeddfa0cb
Expand All @@ -727,12 +733,12 @@ SPEC CHECKSUMS:
React-runtimeexecutor: 7024fd5cb9245856e8ea7aaa51c8cbf015573d17
ReactCommon: 828a0dd88e28f3d2e09e24d4d3e37465d48ab317
RNCAsyncStorage: b90b71f45b8b97be43bc4284e71a6af48ac9f547
RNCMaskedView: bc0170f389056201c82a55e242e5d90070e18e5a
RNCPicker: 567de6dc0c6735cf249700d940c80b90b090e4db
RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6
RNCPicker: 0bc2f0a29abcca7b7ed44a2d036aac9ab6d25700
RNGestureHandler: 071d7a9ad81e8b83fe7663b303d132406a7d8f39
RNReanimated: 6491787e257ea4b74e7f6d7ba98733623a7ddfe3
RNScreens: 218801c16a2782546d30bd2026bb625c0302d70f
RNSVG: c1e76b81c76cdcd34b4e1188852892dc280eb902
RNSVG: 53c661b76829783cdaf9b7a57258f3d3b4c28315
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
Yoga: 86188e8e04cfc605be9f53ace41cb942da148207
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
Expand Down
1 change: 1 addition & 0 deletions Example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.17.12",
"@react-native-community/slider": "^4.4.2",
"@react-native-async-storage/async-storage": "^1.18.1",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-native-picker/picker": "^2.4.9",
Expand Down
584 changes: 300 additions & 284 deletions Example/yarn.lock

Large diffs are not rendered by default.

42 changes: 27 additions & 15 deletions FabricExample/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -673,21 +673,21 @@ PODS:
- React-Core
- react-native-pager-view (5.4.24):
- React-Core
- react-native-safe-area-context (4.5.0):
- react-native-safe-area-context (4.5.1):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- react-native-safe-area-context/common (= 4.5.0)
- react-native-safe-area-context/fabric (= 4.5.0)
- react-native-safe-area-context/common (= 4.5.1)
- react-native-safe-area-context/fabric (= 4.5.1)
- ReactCommon/turbomodule/core
- react-native-safe-area-context/common (4.5.0):
- react-native-safe-area-context/common (4.5.1):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- ReactCommon/turbomodule/core
- react-native-safe-area-context/fabric (4.5.0):
- react-native-safe-area-context/fabric (4.5.1):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
Expand All @@ -696,6 +696,14 @@ PODS:
- react-native-safe-area-context/common
- React-RCTFabric
- ReactCommon/turbomodule/core
- react-native-slider (4.4.2):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Codegen
- React-Core
- React-RCTFabric
- ReactCommon/turbomodule/core
- React-NativeModulesApple (0.72.0-rc.1):
- hermes-engine
- React-callinvoker
Expand Down Expand Up @@ -798,9 +806,9 @@ PODS:
- React-perflogger (= 0.72.0-rc.1)
- RNCAsyncStorage (1.18.1):
- React-Core
- RNCMaskedView (0.2.8):
- RNCMaskedView (0.2.9):
- React-Core
- RNCPicker (2.4.9):
- RNCPicker (2.4.10):
- React-Core
- RNGestureHandler (2.9.0):
- RCT-Folly
Expand Down Expand Up @@ -855,16 +863,16 @@ PODS:
- React-Codegen
- React-RCTFabric
- ReactCommon/turbomodule/core
- RNSVG (13.8.0):
- RNSVG (13.9.0):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React
- React-Codegen
- React-RCTFabric
- ReactCommon/turbomodule/core
- RNSVG/common (= 13.8.0)
- RNSVG/common (13.8.0):
- RNSVG/common (= 13.9.0)
- RNSVG/common (13.9.0):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -928,6 +936,7 @@ DEPENDENCIES:
- react-native-box2d (from `../node_modules/react-native-box2d`)
- react-native-pager-view (from `../node_modules/react-native-pager-view`)
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- "react-native-slider (from `../node_modules/@react-native-community/slider`)"
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
Expand Down Expand Up @@ -1021,6 +1030,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-pager-view"
react-native-safe-area-context:
:path: "../node_modules/react-native-safe-area-context"
react-native-slider:
:path: "../node_modules/@react-native-community/slider"
React-NativeModulesApple:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
Expand Down Expand Up @@ -1107,12 +1118,13 @@ SPEC CHECKSUMS:
React-logger: 264ccba40e268580a95fb9d514c315d2ec7339a5
react-native-box2d: a5126c70227755b79a1b5b8d867e3932041631b3
react-native-pager-view: 95d0418c3c74279840abec6926653d32447bafb6
react-native-safe-area-context: e7e7c502560f89a6a1866af293d1e091f3c7929d
react-native-safe-area-context: 0dfc8e3a7d5ff115d100bafe4269d64a2c0a1456
react-native-slider: 5469a8940a754f73c26ea4bb97c0faace6170f01
React-NativeModulesApple: 018405f985ae4488c4fe29deaaf2f8fc7a87f5d0
React-perflogger: 0c4141a3eba3fe922d53b98900cfeeefe9d78de0
React-RCTActionSheet: bde19fb7124b692941e772a7c83925bbeddfa0cb
React-RCTAnimation: 660297e4bfe277d26018518b86eed48adcde649e
React-RCTAppDelegate: bb49281357042ce1e370bee1d3cdcf1464bd6645
React-RCTAppDelegate: e90d5a71a664ca5edb625a8decf3d0fe59ec7955
React-RCTBlob: f81feafaf9dd1ba5f684d3df9346ac0ddd27417c
React-RCTFabric: 059f86ed6e263538062b4f9777df755e66ac0cbe
React-RCTImage: 83edc4014ee8c3087349116da9698dc44fb8564b
Expand All @@ -1125,12 +1137,12 @@ SPEC CHECKSUMS:
React-runtimeexecutor: 7024fd5cb9245856e8ea7aaa51c8cbf015573d17
ReactCommon: 828a0dd88e28f3d2e09e24d4d3e37465d48ab317
RNCAsyncStorage: b90b71f45b8b97be43bc4284e71a6af48ac9f547
RNCMaskedView: bc0170f389056201c82a55e242e5d90070e18e5a
RNCPicker: 567de6dc0c6735cf249700d940c80b90b090e4db
RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6
RNCPicker: 0bc2f0a29abcca7b7ed44a2d036aac9ab6d25700
RNGestureHandler: 9d2ebd17a9fef618d9720e3d95ff5e6607acf8d4
RNReanimated: b41e747bc0305d1900d0726b8ec205840a38303a
RNScreens: 4666ca0a74ee229b2332c5d22d2a8b81ba9202be
RNSVG: 6b96501d7df80ed8b4fe55d903b4f1476a57e8a5
RNSVG: a9204714b832d82b483b0cbaee9e675646426b8d
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
Yoga: 86188e8e04cfc605be9f53ace41cb942da148207
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
Expand Down
3 changes: 2 additions & 1 deletion FabricExample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.17.12",
"@react-native-community/slider": "^4.4.2",
"@react-native-async-storage/async-storage": "^1.18.1",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-native-picker/picker": "^2.4.9",
Expand Down Expand Up @@ -50,4 +51,4 @@
"engines": {
"node": ">=16"
}
}
}
Loading