Toggle navigation
Toggle navigation
This project
Loading...
Sign in
skywrace
/
drowsiness_detector
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
skywrace
2022-05-12 00:28:04 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7bedfc8ea7e67343cec68c7bb8ac61beeb0762b7
7bedfc8e
1 parent
6dc4f353
chore: Install native-base package for ui
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
1 deletions
DetectApp/App.tsx
DetectApp/ios/Podfile.lock
DetectApp/package.json
DetectApp/yarn.lock
DetectApp/App.tsx
View file @
7bedfc8
...
...
@@ -8,6 +8,7 @@
* @format
*/
import {NativeBaseProvider} from 'native-base';
import React from 'react';
import {
SafeAreaView,
...
...
@@ -63,6 +64,7 @@ const App = () => {
};
return (
<NativeBaseProvider>
<SafeAreaView style={backgroundStyle}>
<StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
<ScrollView
...
...
@@ -90,6 +92,7 @@ const App = () => {
</View>
</ScrollView>
</SafeAreaView>
</NativeBaseProvider>
);
};
...
...
DetectApp/ios/Podfile.lock
View file @
7bedfc8
...
...
@@ -282,6 +282,12 @@ PODS:
- React-jsinspector (0.68.1)
- React-logger (0.68.1):
- glog
- react-native-safe-area-context (4.2.5):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React
- ReactCommon/turbomodule/core
- React-perflogger (0.68.1)
- React-RCTActionSheet (0.68.1):
- React-Core/RCTActionSheetHeaders (= 0.68.1)
...
...
@@ -347,6 +353,8 @@ PODS:
- React-jsi (= 0.68.1)
- React-logger (= 0.68.1)
- React-perflogger (= 0.68.1)
- RNSVG (12.3.0):
- React-Core
- SocketRocket (0.6.0)
- Yoga (1.14.0)
- YogaKit (1.18.1):
...
...
@@ -395,6 +403,7 @@ DEPENDENCIES:
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
...
...
@@ -407,6 +416,7 @@ DEPENDENCIES:
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- RNSVG (from `../node_modules/react-native-svg`)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
SPEC REPOS:
...
...
@@ -464,6 +474,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsinspector"
React-logger:
:path: "../node_modules/react-native/ReactCommon/logger"
react-native-safe-area-context:
:path: "../node_modules/react-native-safe-area-context"
React-perflogger:
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
React-RCTActionSheet:
...
...
@@ -488,6 +500,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
ReactCommon:
:path: "../node_modules/react-native/ReactCommon"
RNSVG:
:path: "../node_modules/react-native-svg"
Yoga:
:path: "../node_modules/react-native/ReactCommon/yoga"
...
...
@@ -523,6 +537,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: 4a4bae5671b064a2248a690cf75957669489d08c
React-jsinspector: 218a2503198ff28a085f8e16622a8d8f507c8019
React-logger: f79dd3cc0f9b44f5611c6c7862badd891a862cf8
react-native-safe-area-context: ebf8c413eb8b5f7c392a036a315eb7b46b96845f
React-perflogger: 30ab8d6db10e175626069e742eead3ebe8f24fd5
React-RCTActionSheet: 4b45da334a175b24dabe75f856b98fed3dfd6201
React-RCTAnimation: d6237386cb04500889877845b3e9e9291146bc2e
...
...
@@ -535,6 +550,7 @@ SPEC CHECKSUMS:
React-RCTVibration: 9e344c840176b0af9c84d5019eb4fed8b3c105a1
React-runtimeexecutor: 7285b499d0339104b2813a1f58ad1ada4adbd6c0
ReactCommon: bf2888a826ceedf54b99ad1b6182d1bc4a8a3984
RNSVG: 302bfc9905bd8122f08966dc2ce2d07b7b52b9f8
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
Yoga: 17cd9a50243093b547c1e539c749928dd68152da
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
...
...
DetectApp/package.json
View file @
7bedfc8
...
...
@@ -10,8 +10,11 @@
"lint"
:
"eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies"
:
{
"native-base"
:
"^3.4.5"
,
"react"
:
"17.0.2"
,
"react-native"
:
"0.68.1"
"react-native"
:
"0.68.1"
,
"react-native-safe-area-context"
:
"^4.2.5"
,
"react-native-svg"
:
"^12.3.0"
},
"devDependencies"
:
{
"@babel/core"
:
"^7.12.9"
,
...
...
DetectApp/yarn.lock
View file @
7bedfc8
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment