├── .babelrc ├── .flowconfig ├── .gitignore ├── .vscode ├── launchReactNative.js ├── settings.json └── typings │ ├── react-native │ └── react-native.d.ts │ └── react │ ├── react-addons-create-fragment.d.ts │ ├── react-addons-css-transition-group.d.ts │ ├── react-addons-linked-state-mixin.d.ts │ ├── react-addons-perf.d.ts │ ├── react-addons-pure-render-mixin.d.ts │ ├── react-addons-test-utils.d.ts │ ├── react-addons-transition-group.d.ts │ ├── react-addons-update.d.ts │ ├── react-dom.d.ts │ ├── react-global.d.ts │ └── react.d.ts ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── app.json ├── assets ├── dog.jpg ├── hero.png ├── logo.png ├── logo@2x.png └── logo@3x.png ├── components ├── GrowingTextInput.js ├── Swipeable.js └── ToggleButton.js ├── data.js ├── package.json ├── screens ├── EventDetails.js ├── FeedbackScreen.js └── Schedule.js ├── tsconfig.json ├── util ├── formatCustomDateString.js └── parseCustomDateString.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /.vscode/launchReactNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/launchReactNative.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.vscode/typings/react-native/react-native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react-native/react-native.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-create-fragment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-create-fragment.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-css-transition-group.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-css-transition-group.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-linked-state-mixin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-linked-state-mixin.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-perf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-perf.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-pure-render-mixin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-pure-render-mixin.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-test-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-test-utils.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-transition-group.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-transition-group.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-addons-update.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-addons-update.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-dom.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react-global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react-global.d.ts -------------------------------------------------------------------------------- /.vscode/typings/react/react.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/.vscode/typings/react/react.d.ts -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/App.test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/assets/dog.jpg -------------------------------------------------------------------------------- /assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/assets/hero.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/assets/logo@2x.png -------------------------------------------------------------------------------- /assets/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/assets/logo@3x.png -------------------------------------------------------------------------------- /components/GrowingTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/components/GrowingTextInput.js -------------------------------------------------------------------------------- /components/Swipeable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/components/Swipeable.js -------------------------------------------------------------------------------- /components/ToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/components/ToggleButton.js -------------------------------------------------------------------------------- /data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/data.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/package.json -------------------------------------------------------------------------------- /screens/EventDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/screens/EventDetails.js -------------------------------------------------------------------------------- /screens/FeedbackScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/screens/FeedbackScreen.js -------------------------------------------------------------------------------- /screens/Schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/screens/Schedule.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /util/formatCustomDateString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/util/formatCustomDateString.js -------------------------------------------------------------------------------- /util/parseCustomDateString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/util/parseCustomDateString.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbott/react-europe-conference-app/HEAD/yarn.lock --------------------------------------------------------------------------------