Skip to content
Open
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
8 changes: 4 additions & 4 deletions .expo/packager-info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"devToolsPort": 19002,
"expoServerPort": null,
"packagerPort": null,
"packagerPid": null,
"expoServerPort": 19000,
"packagerPort": 19001,
"packagerPid": 25344,
"expoServerNgrokUrl": null,
"packagerNgrokUrl": null,
"ngrokPid": null
}
}
5 changes: 3 additions & 2 deletions .expo/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"lanType": "ip",
"dev": true,
"minify": false,
"urlRandomness": "vx-5x5"
}
"urlRandomness": "vx-5x5",
"https": false
}
2 changes: 1 addition & 1 deletion amplify/.config/project-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"projectName": "RNConfInABox",
"version": "2.0",
"version": "3.0",
"frontend": "javascript",
"javascript": {
"framework": "react-native",
Expand Down
4 changes: 4 additions & 0 deletions amplify/backend/api/rnconfinabox/transform.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"Version": 5,
"ElasticsearchWarning": true
}
19 changes: 12 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,28 @@
"eject": "expo eject"
},
"dependencies": {
"@react-native-community/netinfo": "^5.9.4",
"aws-amplify": "2.2.1",
"aws-amplify-react": "3.1.2",
"aws-amplify-react-native": "2.2.3",
"date-fns": "^1.30.1",
"expo": "^33.0.0",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"expo": "^38.0.0",
"expo-font": "^8.2.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-38.0.0.tar.gz",
"react-native-gesture-handler": "^1.6.1",
"react-native-maps": "^0.27.1",
"react-native-screens": "^2.9.0",
"react-native-snap-carousel": "^3.8.0",
"react-native-web": "^0.11.4",
"react-native-web": "~0.11.7",
"react-native-web-maps": "^0.2.0",
"react-navigation": "^3.11.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@expo/webpack-config": "^0.7.0",
"babel-preset-expo": "^5.1.1"
"@expo/webpack-config": "^0.12.16",
"babel-preset-expo": "^8.2.3"
},
"private": true
}
6 changes: 4 additions & 2 deletions src/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Hub, Auth } from 'aws-amplify'
import { withAuthenticator } from 'aws-amplify-react-native'
import AmplifyTheme from 'aws-amplify-react-native/src/AmplifyTheme'
import { FontAwesome } from '@expo/vector-icons'
import { Font } from 'expo'
import * as Font from 'expo-font';

import Schedule from './Schedule'
import Profile from './Profile'
Expand Down Expand Up @@ -50,7 +50,9 @@ class TabNavWithProps extends React.Component {
Font.loadAsync({
'Gotham Rounded': require('./assets/fonts/GothamRnd-Light.otf'),
'GothamRnd Medium': require('./assets/fonts/GothamRnd-Medium.otf'),
'Gotham Bold': require('./assets/fonts/GothamRnd-Bold.otf')
'Gotham Bold': require('./assets/fonts/GothamRnd-Bold.otf'),
'Ionicons': require('./assets/fonts/GothamRnd-Bold.otf')

});
}
static router = TabNavigator.router
Expand Down