Skip to content

Commit 63fd864

Browse files
author
Jake
committed
very basic initial wip
1 parent 77f589d commit 63fd864

27 files changed

+424
-164
lines changed

.babelrc

-15
This file was deleted.

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,3 @@ buck-out/
5757

5858
# CocoaPods
5959
/ios/Pods/
60-
61-
PRPL.iml
-68.7 KB
Binary file not shown.
-64 KB
Binary file not shown.
-13.1 KB
Binary file not shown.
-56.9 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-306 KB
Binary file not shown.
-55.6 KB
Binary file not shown.
-110 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-27.7 KB
Binary file not shown.
Binary file not shown.
-25 KB
Binary file not shown.

babel.config.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
presets: ['module:metro-react-native-babel-preset'],
3+
plugins: [
4+
'@babel/proposal-object-rest-spread',
5+
'@babel/plugin-syntax-dynamic-import',
6+
[
7+
'module-resolver',
8+
{
9+
alias: {
10+
'@assets': './assets',
11+
'@': './src',
12+
},
13+
root: ['.'],
14+
extensions: ['.js', '.jsx', '.tsx', '.ts', '.json', '.png'],
15+
},
16+
],
17+
],
18+
};

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'react-native-gesture-handler';
12
import {AppRegistry} from 'react-native';
23
import App from './src/App';
34
import {name as appName} from './app.json';

ios/PRPL.xcodeproj/project.pbxproj

+109-86
Large diffs are not rendered by default.

ios/PRPL/Info.plist

-16
Original file line numberDiff line numberDiff line change
@@ -66,22 +66,6 @@
6666
<string>Rubik-Medium.ttf</string>
6767
<string>Rubik-MediumItalic.ttf</string>
6868
<string>Rubik-Regular.ttf</string>
69-
<string>AntDesign.ttf</string>
70-
<string>Entypo.ttf</string>
71-
<string>EvilIcons.ttf</string>
72-
<string>Feather.ttf</string>
73-
<string>FontAwesome.ttf</string>
74-
<string>FontAwesome5_Brands.ttf</string>
75-
<string>FontAwesome5_Regular.ttf</string>
76-
<string>FontAwesome5_Solid.ttf</string>
77-
<string>Fontisto.ttf</string>
78-
<string>Foundation.ttf</string>
79-
<string>Ionicons.ttf</string>
80-
<string>MaterialCommunityIcons.ttf</string>
81-
<string>MaterialIcons.ttf</string>
82-
<string>Octicons.ttf</string>
83-
<string>SimpleLineIcons.ttf</string>
84-
<string>Zocial.ttf</string>
8569
</array>
8670
</dict>
8771
</plist>

ios/Podfile.lock

+43-1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,10 @@ PODS:
233233
- React-cxxreact (= 0.62.2)
234234
- React-jsi (= 0.62.2)
235235
- React-jsinspector (0.62.2)
236+
- react-native-safe-area-context (0.7.3):
237+
- React
238+
- react-native-webview (7.6.0):
239+
- React
236240
- React-RCTActionSheet (0.62.2):
237241
- React-Core/RCTActionSheetHeaders (= 0.62.2)
238242
- React-RCTAnimation (0.62.2):
@@ -292,6 +296,16 @@ PODS:
292296
- React-cxxreact (= 0.62.2)
293297
- React-jsi (= 0.62.2)
294298
- ReactCommon/callinvoker (= 0.62.2)
299+
- RNCMaskedView (0.1.10):
300+
- React
301+
- RNGestureHandler (1.6.1):
302+
- React
303+
- RNReanimated (1.8.0):
304+
- React
305+
- RNScreens (2.7.0):
306+
- React
307+
- RNVectorIcons (6.6.0):
308+
- React
295309
- Yoga (1.14.0)
296310
- YogaKit (1.18.1):
297311
- Yoga (~> 1.14)
@@ -332,6 +346,8 @@ DEPENDENCIES:
332346
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
333347
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
334348
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
349+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
350+
- react-native-webview (from `../node_modules/react-native-webview`)
335351
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
336352
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
337353
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
@@ -343,6 +359,11 @@ DEPENDENCIES:
343359
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
344360
- ReactCommon/callinvoker (from `../node_modules/react-native/ReactCommon`)
345361
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
362+
- "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
363+
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
364+
- RNReanimated (from `../node_modules/react-native-reanimated`)
365+
- RNScreens (from `../node_modules/react-native-screens`)
366+
- RNVectorIcons (from `../node_modules/react-native-vector-icons`)
346367
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
347368

348369
SPEC REPOS:
@@ -389,6 +410,10 @@ EXTERNAL SOURCES:
389410
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
390411
React-jsinspector:
391412
:path: "../node_modules/react-native/ReactCommon/jsinspector"
413+
react-native-safe-area-context:
414+
:path: "../node_modules/react-native-safe-area-context"
415+
react-native-webview:
416+
:path: "../node_modules/react-native-webview"
392417
React-RCTActionSheet:
393418
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
394419
React-RCTAnimation:
@@ -409,6 +434,16 @@ EXTERNAL SOURCES:
409434
:path: "../node_modules/react-native/Libraries/Vibration"
410435
ReactCommon:
411436
:path: "../node_modules/react-native/ReactCommon"
437+
RNCMaskedView:
438+
:path: "../node_modules/@react-native-community/masked-view"
439+
RNGestureHandler:
440+
:path: "../node_modules/react-native-gesture-handler"
441+
RNReanimated:
442+
:path: "../node_modules/react-native-reanimated"
443+
RNScreens:
444+
:path: "../node_modules/react-native-screens"
445+
RNVectorIcons:
446+
:path: "../node_modules/react-native-vector-icons"
412447
Yoga:
413448
:path: "../node_modules/react-native/ReactCommon/yoga"
414449

@@ -438,6 +473,8 @@ SPEC CHECKSUMS:
438473
React-jsi: b6dc94a6a12ff98e8877287a0b7620d365201161
439474
React-jsiexecutor: 1540d1c01bb493ae3124ed83351b1b6a155db7da
440475
React-jsinspector: 512e560d0e985d0e8c479a54a4e5c147a9c83493
476+
react-native-safe-area-context: 8260e5157617df4b72865f44006797f895b2ada7
477+
react-native-webview: 711cef318a554093b09a5b871894011435d87a8d
441478
React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c
442479
React-RCTAnimation: 49ab98b1c1ff4445148b72a3d61554138565bad0
443480
React-RCTBlob: a332773f0ebc413a0ce85942a55b064471587a71
@@ -448,9 +485,14 @@ SPEC CHECKSUMS:
448485
React-RCTText: fae545b10cfdb3d247c36c56f61a94cfd6dba41d
449486
React-RCTVibration: 4356114dbcba4ce66991096e51a66e61eda51256
450487
ReactCommon: ed4e11d27609d571e7eee8b65548efc191116eb3
488+
RNCMaskedView: f5c7d14d6847b7b44853f7acb6284c1da30a3459
489+
RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38
490+
RNReanimated: 955cf4068714003d2f1a6e2bae3fb1118f359aff
491+
RNScreens: cf198f915f8a2bf163de94ca9f5bfc8d326c3706
492+
RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4
451493
Yoga: 3ebccbdd559724312790e7742142d062476b698e
452494
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
453495

454496
PODFILE CHECKSUM: b69344207b77c6308fc551b93fbc147e3b034c5a
455497

456-
COCOAPODS: 1.9.1
498+
COCOAPODS: 1.9.0

metro.config.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/**
2-
* Metro configuration for React Native
3-
* https://github.com/facebook/react-native
4-
*
5-
* @format
6-
*/
7-
81
module.exports = {
92
transformer: {
103
getTransformOptions: async () => ({

package-lock.json

+129
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)