├── .bash_profile ├── .expo-shared └── assets.json ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── App.css ├── App.js ├── app.json ├── app.txt ├── app ├── api │ ├── client.js │ ├── expoPushTokens.js │ └── listings.js ├── assets │ ├── animations │ │ ├── 9764-loader.json │ │ ├── done.json │ │ └── loader.json │ ├── background.jpg │ ├── chair.jpg │ ├── couch.jpg │ ├── jacket.jpg │ ├── logo-red.png │ └── photo.jpeg ├── components │ ├── ActivityIndicator.js │ ├── AppButton.js │ ├── AppPicker.js │ ├── AppText.js │ ├── AppTextInput.js │ ├── Button.js │ ├── Card.js │ ├── Icon.js │ ├── ImageInput.js │ ├── ImageInputList.js │ ├── Picker │ │ ├── CategoryPickerItem.js │ │ ├── Picker.js │ │ └── PickerItem.js │ ├── Screen.js │ ├── Test.js │ ├── Text.js │ ├── TextInput.js │ ├── forms │ │ ├── AppForm.js │ │ ├── AppFormField.js │ │ ├── AppFormPicker.js │ │ ├── ErrorMessage.js │ │ ├── Form.js │ │ ├── FormField.js │ │ ├── FormImagePicker.js │ │ ├── FormPicker.js │ │ ├── SubmitButton.js │ │ └── index.js │ └── lists │ │ ├── ListItem.js │ │ ├── ListItemDeleteAction.js │ │ └── ListItemSeparator.js ├── config │ ├── colors.js │ ├── defaultStyles.js │ └── styles.js ├── hooks │ ├── useApi.js │ └── useLocation.js ├── navigation │ ├── AccountNavigator.js │ ├── AppNavigator.js │ ├── AuthNavigator.js │ ├── FeedNavigator.js │ ├── NewListingButton.js │ ├── navigationTheme.js │ └── routes.js └── screens │ ├── AccountScreen.js │ ├── ListingDetailsScreen.js │ ├── ListingEditScreen.js │ ├── ListingsScreen.js │ ├── LoginScreen.js │ ├── MessagesScreen.js │ ├── RegisterScreen.js │ ├── UploadScreen.js │ ├── ViewImageScreen.js │ └── WelcomeScreen.js ├── babel.config.js ├── coverage ├── clover.xml ├── coverage-final.json ├── lcov-report │ ├── DoneWithIt │ │ ├── App.js.html │ │ ├── app │ │ │ ├── api │ │ │ │ ├── client.js.html │ │ │ │ ├── index.html │ │ │ │ └── listings.js.html │ │ │ ├── components │ │ │ │ ├── ActivityIndicator.js.html │ │ │ │ ├── AppButton.js.html │ │ │ │ ├── AppPicker.js.html │ │ │ │ ├── AppText.js.html │ │ │ │ ├── AppTextInput.js.html │ │ │ │ ├── Button.js.html │ │ │ │ ├── Card.js.html │ │ │ │ ├── Icon.js.html │ │ │ │ ├── ImageInput.js.html │ │ │ │ ├── ImageInputList.js.html │ │ │ │ ├── Picker │ │ │ │ │ ├── CategoryPickerItem.js.html │ │ │ │ │ ├── Picker.js.html │ │ │ │ │ ├── PickerItem.js.html │ │ │ │ │ └── index.html │ │ │ │ ├── Screen.js.html │ │ │ │ ├── Test.js.html │ │ │ │ ├── Text.js.html │ │ │ │ ├── TextInput.js.html │ │ │ │ ├── forms │ │ │ │ │ ├── AppForm.js.html │ │ │ │ │ ├── AppFormField.js.html │ │ │ │ │ ├── AppFormPicker.js.html │ │ │ │ │ ├── ErrorMessage.js.html │ │ │ │ │ ├── Form.js.html │ │ │ │ │ ├── FormField.js.html │ │ │ │ │ ├── FormImagePicker.js.html │ │ │ │ │ ├── FormPicker.js.html │ │ │ │ │ ├── SubmitButton.js.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.js.html │ │ │ │ ├── index.html │ │ │ │ └── lists │ │ │ │ │ ├── ListItem.js.html │ │ │ │ │ ├── ListItemDeleteAction.js.html │ │ │ │ │ ├── ListItemSeparator.js.html │ │ │ │ │ └── index.html │ │ │ ├── config │ │ │ │ ├── colors.js.html │ │ │ │ ├── defaultStyles.js.html │ │ │ │ ├── index.html │ │ │ │ └── styles.js.html │ │ │ ├── hooks │ │ │ │ ├── index.html │ │ │ │ ├── useApi.js.html │ │ │ │ └── useLocation.js.html │ │ │ ├── navigation │ │ │ │ ├── AccountNavigator.js.html │ │ │ │ ├── AppNavigator.js.html │ │ │ │ ├── AuthNavigator.js.html │ │ │ │ ├── FeedNavigator.js.html │ │ │ │ ├── NewListingButton.js.html │ │ │ │ ├── index.html │ │ │ │ ├── navigationTheme.js.html │ │ │ │ └── routes.js.html │ │ │ └── screens │ │ │ │ ├── AccountScreen.js.html │ │ │ │ ├── ListingDetailsScreen.js.html │ │ │ │ ├── ListingEditScreen.js.html │ │ │ │ ├── ListingsScreen.js.html │ │ │ │ ├── LoginScreen.js.html │ │ │ │ ├── MessagesScreen.js.html │ │ │ │ ├── RegisterScreen.js.html │ │ │ │ ├── ViewImageScreen.js.html │ │ │ │ ├── WelcomeScreen.js.html │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── setupTests.js.html │ │ └── src │ │ │ ├── index.html │ │ │ └── setupTests.js.html │ ├── base.css │ ├── block-navigation.js │ ├── favicon.png │ ├── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js └── lcov.info ├── jsconfig.json ├── package.json ├── src ├── __tests__ │ ├── App.test.js │ ├── AppButton.test.js │ └── __snapshots__ │ │ ├── App.test.js.snap │ │ └── AppButton.test.js.snap └── setupTests.js ├── yarn-error.log └── yarn.lock /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/.bash_profile -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /App.css: -------------------------------------------------------------------------------- 1 | App { 2 | background-color: orange; 3 | } -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/App.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app.json -------------------------------------------------------------------------------- /app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app.txt -------------------------------------------------------------------------------- /app/api/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/api/client.js -------------------------------------------------------------------------------- /app/api/expoPushTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/api/expoPushTokens.js -------------------------------------------------------------------------------- /app/api/listings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/api/listings.js -------------------------------------------------------------------------------- /app/assets/animations/9764-loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/animations/9764-loader.json -------------------------------------------------------------------------------- /app/assets/animations/done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/animations/done.json -------------------------------------------------------------------------------- /app/assets/animations/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/animations/loader.json -------------------------------------------------------------------------------- /app/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/background.jpg -------------------------------------------------------------------------------- /app/assets/chair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/chair.jpg -------------------------------------------------------------------------------- /app/assets/couch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/couch.jpg -------------------------------------------------------------------------------- /app/assets/jacket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/jacket.jpg -------------------------------------------------------------------------------- /app/assets/logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/logo-red.png -------------------------------------------------------------------------------- /app/assets/photo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/assets/photo.jpeg -------------------------------------------------------------------------------- /app/components/ActivityIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/ActivityIndicator.js -------------------------------------------------------------------------------- /app/components/AppButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/AppButton.js -------------------------------------------------------------------------------- /app/components/AppPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/AppPicker.js -------------------------------------------------------------------------------- /app/components/AppText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/AppText.js -------------------------------------------------------------------------------- /app/components/AppTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/AppTextInput.js -------------------------------------------------------------------------------- /app/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Button.js -------------------------------------------------------------------------------- /app/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Card.js -------------------------------------------------------------------------------- /app/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Icon.js -------------------------------------------------------------------------------- /app/components/ImageInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/ImageInput.js -------------------------------------------------------------------------------- /app/components/ImageInputList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/ImageInputList.js -------------------------------------------------------------------------------- /app/components/Picker/CategoryPickerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Picker/CategoryPickerItem.js -------------------------------------------------------------------------------- /app/components/Picker/Picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Picker/Picker.js -------------------------------------------------------------------------------- /app/components/Picker/PickerItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Picker/PickerItem.js -------------------------------------------------------------------------------- /app/components/Screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Screen.js -------------------------------------------------------------------------------- /app/components/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Test.js -------------------------------------------------------------------------------- /app/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/Text.js -------------------------------------------------------------------------------- /app/components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/TextInput.js -------------------------------------------------------------------------------- /app/components/forms/AppForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/AppForm.js -------------------------------------------------------------------------------- /app/components/forms/AppFormField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/AppFormField.js -------------------------------------------------------------------------------- /app/components/forms/AppFormPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/AppFormPicker.js -------------------------------------------------------------------------------- /app/components/forms/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/ErrorMessage.js -------------------------------------------------------------------------------- /app/components/forms/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/Form.js -------------------------------------------------------------------------------- /app/components/forms/FormField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/FormField.js -------------------------------------------------------------------------------- /app/components/forms/FormImagePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/FormImagePicker.js -------------------------------------------------------------------------------- /app/components/forms/FormPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/FormPicker.js -------------------------------------------------------------------------------- /app/components/forms/SubmitButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/SubmitButton.js -------------------------------------------------------------------------------- /app/components/forms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/forms/index.js -------------------------------------------------------------------------------- /app/components/lists/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/lists/ListItem.js -------------------------------------------------------------------------------- /app/components/lists/ListItemDeleteAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/lists/ListItemDeleteAction.js -------------------------------------------------------------------------------- /app/components/lists/ListItemSeparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/components/lists/ListItemSeparator.js -------------------------------------------------------------------------------- /app/config/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/config/colors.js -------------------------------------------------------------------------------- /app/config/defaultStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/config/defaultStyles.js -------------------------------------------------------------------------------- /app/config/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/config/styles.js -------------------------------------------------------------------------------- /app/hooks/useApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/hooks/useApi.js -------------------------------------------------------------------------------- /app/hooks/useLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/hooks/useLocation.js -------------------------------------------------------------------------------- /app/navigation/AccountNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/AccountNavigator.js -------------------------------------------------------------------------------- /app/navigation/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/AppNavigator.js -------------------------------------------------------------------------------- /app/navigation/AuthNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/AuthNavigator.js -------------------------------------------------------------------------------- /app/navigation/FeedNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/FeedNavigator.js -------------------------------------------------------------------------------- /app/navigation/NewListingButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/NewListingButton.js -------------------------------------------------------------------------------- /app/navigation/navigationTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/navigationTheme.js -------------------------------------------------------------------------------- /app/navigation/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/navigation/routes.js -------------------------------------------------------------------------------- /app/screens/AccountScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/AccountScreen.js -------------------------------------------------------------------------------- /app/screens/ListingDetailsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/ListingDetailsScreen.js -------------------------------------------------------------------------------- /app/screens/ListingEditScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/ListingEditScreen.js -------------------------------------------------------------------------------- /app/screens/ListingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/ListingsScreen.js -------------------------------------------------------------------------------- /app/screens/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/LoginScreen.js -------------------------------------------------------------------------------- /app/screens/MessagesScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/MessagesScreen.js -------------------------------------------------------------------------------- /app/screens/RegisterScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/RegisterScreen.js -------------------------------------------------------------------------------- /app/screens/UploadScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/UploadScreen.js -------------------------------------------------------------------------------- /app/screens/ViewImageScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/ViewImageScreen.js -------------------------------------------------------------------------------- /app/screens/WelcomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/app/screens/WelcomeScreen.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/babel.config.js -------------------------------------------------------------------------------- /coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/clover.xml -------------------------------------------------------------------------------- /coverage/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/coverage-final.json -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/App.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/App.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/api/client.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/api/client.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/api/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/api/listings.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/api/listings.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/ActivityIndicator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/ActivityIndicator.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/AppButton.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/AppButton.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/AppPicker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/AppPicker.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/AppText.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/AppText.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/AppTextInput.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/AppTextInput.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Button.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Button.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Card.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Card.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Icon.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Icon.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/ImageInput.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/ImageInput.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/ImageInputList.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/ImageInputList.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Picker/CategoryPickerItem.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Picker/CategoryPickerItem.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Picker/Picker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Picker/Picker.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Picker/PickerItem.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Picker/PickerItem.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Picker/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Screen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Screen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Test.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Test.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/Text.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/Text.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/TextInput.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/TextInput.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/AppForm.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/AppForm.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/AppFormField.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/AppFormField.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/AppFormPicker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/AppFormPicker.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/ErrorMessage.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/ErrorMessage.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/Form.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/Form.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/FormField.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/FormField.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/FormImagePicker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/FormImagePicker.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/FormPicker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/FormPicker.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/SubmitButton.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/SubmitButton.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/forms/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/forms/index.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/lists/ListItem.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/lists/ListItem.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/lists/ListItemDeleteAction.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/lists/ListItemDeleteAction.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/lists/ListItemSeparator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/lists/ListItemSeparator.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/components/lists/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/components/lists/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/config/colors.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/config/colors.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/config/defaultStyles.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/config/defaultStyles.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/config/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/config/styles.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/config/styles.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/hooks/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/hooks/useApi.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/hooks/useApi.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/hooks/useLocation.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/hooks/useLocation.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/AccountNavigator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/AccountNavigator.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/AppNavigator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/AppNavigator.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/AuthNavigator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/AuthNavigator.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/FeedNavigator.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/FeedNavigator.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/NewListingButton.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/NewListingButton.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/navigationTheme.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/navigationTheme.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/navigation/routes.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/navigation/routes.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/AccountScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/AccountScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/ListingDetailsScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/ListingDetailsScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/ListingEditScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/ListingEditScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/ListingsScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/ListingsScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/LoginScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/LoginScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/MessagesScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/MessagesScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/RegisterScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/RegisterScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/ViewImageScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/ViewImageScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/WelcomeScreen.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/WelcomeScreen.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/app/screens/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/app/screens/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/setupTests.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/setupTests.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/src/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/DoneWithIt/src/setupTests.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/DoneWithIt/src/setupTests.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "exclude": ["node_modules"] 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/src/__tests__/App.test.js -------------------------------------------------------------------------------- /src/__tests__/AppButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/src/__tests__/AppButton.test.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/App.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/src/__tests__/__snapshots__/App.test.js.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/AppButton.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/src/__tests__/__snapshots__/AppButton.test.js.snap -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamfortune/Done-With-It-App/HEAD/yarn.lock --------------------------------------------------------------------------------