Skip to content

Commit 27fe258

Browse files
authored
Add files via upload
1 parent c39ec20 commit 27fe258

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+122646
-0
lines changed

Examples/ECGDataHashcode.csv

+4,963
Large diffs are not rendered by default.

Examples/EMGDataHashcode.csv

+16,648
Large diffs are not rendered by default.

Examples/Graph-01.png

195 KB
Loading

Examples/Graph-02.png

128 KB
Loading
303 KB
Loading
1.27 MB
Binary file not shown.
1.27 MB
Binary file not shown.
1.27 MB
Binary file not shown.
1.27 MB
Binary file not shown.
1.27 MB
Binary file not shown.

Examples/ThermalImages/face.png

223 KB
Loading

Examples/ThermalImages/t1.png

290 KB
Loading

Examples/ThermalImages/t3.png

213 KB
Loading
225 KB
Loading

HealthHackApp/HealthHack/App.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { createAppContainer } from 'react-navigation';
2+
import { createStackNavigator } from 'react-navigation-stack';
3+
import { createBottomTabNavigator } from 'react-navigation-tabs';
4+
import HomeScreen from './src/screens/HomeScreen';
5+
import MonitorMainScreen from './src/screens/MonitorMainScreen';
6+
7+
const navigator = createStackNavigator({
8+
Home: HomeScreen,
9+
MonitorMain: MonitorMainScreen,
10+
},
11+
{
12+
initialRouteName: 'Home',
13+
navigationOptions: ({navigation}) => ({
14+
header: <AppBar title={navigation.getParam('appBar', {title: ''}).title}/>
15+
}),
16+
defaultNavigationOptions: {
17+
title: 'Health Hack'
18+
}
19+
});
20+
21+
export default createAppContainer(navigator);

HealthHackApp/HealthHack/app.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"expo": {
3+
"name": "Health Hack",
4+
"slug": "HealthHack",
5+
"privacy": "public",
6+
"sdkVersion": "35.0.0",
7+
"platforms": [
8+
"ios",
9+
"android",
10+
"web"
11+
],
12+
"version": "1.0.0",
13+
"orientation": "portrait",
14+
"icon": "./assets/icon.png",
15+
"splash": {
16+
"image": "./assets/splash.png",
17+
"resizeMode": "contain",
18+
"backgroundColor": "#ffffff"
19+
},
20+
"updates": {
21+
"fallbackToCacheTimeout": 0
22+
},
23+
"assetBundlePatterns": [
24+
"**/*"
25+
],
26+
"ios": {
27+
"supportsTablet": true
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)