├── .editorconfig ├── .eslintrc.js ├── .expo-shared └── assets.json ├── .github ├── FUNDING.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .prettierrc.js ├── App.js ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── app.json ├── assets ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── documentation ├── contributing.md ├── expo-demo.jpg ├── file-structure.md ├── rnsk-logo.jpg └── testing.md ├── index.js ├── native-base-theme ├── components │ ├── Badge.js │ ├── Body.js │ ├── Button.js │ ├── Card.js │ ├── CardItem.js │ ├── CheckBox.js │ ├── Container.js │ ├── Content.js │ ├── Fab.js │ ├── Footer.js │ ├── FooterTab.js │ ├── Form.js │ ├── H1.js │ ├── H2.js │ ├── H3.js │ ├── Header.js │ ├── Icon.js │ ├── Input.js │ ├── InputGroup.js │ ├── Item.js │ ├── Label.js │ ├── Left.js │ ├── ListItem.js │ ├── Picker.android.js │ ├── Picker.ios.js │ ├── Picker.js │ ├── Radio.js │ ├── Right.js │ ├── Segment.js │ ├── Separator.js │ ├── Spinner.js │ ├── Subtitle.js │ ├── SwipeRow.js │ ├── Switch.js │ ├── Tab.js │ ├── TabBar.js │ ├── TabContainer.js │ ├── TabHeading.js │ ├── Text.js │ ├── Textarea.js │ ├── Thumbnail.js │ ├── Title.js │ ├── Toast.js │ ├── View.js │ └── index.js └── variables │ ├── commonColor.js │ ├── material.js │ └── platform.js ├── package.json ├── src ├── components │ ├── About.js │ ├── Articles │ │ ├── Form.js │ │ ├── List.js │ │ └── Single.js │ └── UI │ │ ├── Error.js │ │ ├── Header.js │ │ ├── Loading.js │ │ ├── Messages.js │ │ ├── Spacer.js │ │ └── index.js ├── constants │ ├── config.js │ ├── messages.js │ └── navigation.js ├── containers │ ├── Articles │ │ ├── Form.js │ │ ├── List.js │ │ └── Single.js │ └── index.js ├── images │ ├── app-icon.png │ └── launch.png ├── index.js ├── lib │ ├── api.js │ ├── format-error-messages.js │ ├── images.js │ ├── pagination.js │ └── string.js ├── models │ ├── articles.js │ └── index.js ├── routes │ └── index.js ├── store │ ├── articles.js │ └── index.js └── tests │ ├── __mocks__ │ ├── @react-native-community │ │ └── async-storage.js │ ├── react-native-gesture-handler.js │ ├── react-native-reanimated.js │ ├── react-native-tab-view.js │ ├── react-navigation-stack.js │ └── react-redux.js │ ├── components │ ├── Articles │ │ ├── List.test.js │ │ ├── Single.test.js │ │ └── __snapshots__ │ │ │ ├── List.test.js.snap │ │ │ └── Single.test.js.snap │ └── UI │ │ ├── Error.test.js │ │ ├── Header.test.js │ │ ├── Loading.test.js │ │ ├── Messages.test.js │ │ ├── Spacer.test.js │ │ └── __snapshots__ │ │ ├── Error.test.js.snap │ │ ├── Header.test.js.snap │ │ ├── Loading.test.js.snap │ │ ├── Messages.test.js.snap │ │ └── Spacer.test.js.snap │ ├── lib │ ├── format-error-messages.test.js │ ├── images.test.js │ ├── pagination.test.js │ └── string.test.js │ └── models │ └── articles.test.js ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mcnamee 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/App.js -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/app.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/babel.config.js -------------------------------------------------------------------------------- /documentation/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/documentation/contributing.md -------------------------------------------------------------------------------- /documentation/expo-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/documentation/expo-demo.jpg -------------------------------------------------------------------------------- /documentation/file-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/documentation/file-structure.md -------------------------------------------------------------------------------- /documentation/rnsk-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/documentation/rnsk-logo.jpg -------------------------------------------------------------------------------- /documentation/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/documentation/testing.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/index.js -------------------------------------------------------------------------------- /native-base-theme/components/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Badge.js -------------------------------------------------------------------------------- /native-base-theme/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Body.js -------------------------------------------------------------------------------- /native-base-theme/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Button.js -------------------------------------------------------------------------------- /native-base-theme/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Card.js -------------------------------------------------------------------------------- /native-base-theme/components/CardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/CardItem.js -------------------------------------------------------------------------------- /native-base-theme/components/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/CheckBox.js -------------------------------------------------------------------------------- /native-base-theme/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Container.js -------------------------------------------------------------------------------- /native-base-theme/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Content.js -------------------------------------------------------------------------------- /native-base-theme/components/Fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Fab.js -------------------------------------------------------------------------------- /native-base-theme/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Footer.js -------------------------------------------------------------------------------- /native-base-theme/components/FooterTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/FooterTab.js -------------------------------------------------------------------------------- /native-base-theme/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Form.js -------------------------------------------------------------------------------- /native-base-theme/components/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/H1.js -------------------------------------------------------------------------------- /native-base-theme/components/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/H2.js -------------------------------------------------------------------------------- /native-base-theme/components/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/H3.js -------------------------------------------------------------------------------- /native-base-theme/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Header.js -------------------------------------------------------------------------------- /native-base-theme/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Icon.js -------------------------------------------------------------------------------- /native-base-theme/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Input.js -------------------------------------------------------------------------------- /native-base-theme/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/InputGroup.js -------------------------------------------------------------------------------- /native-base-theme/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Item.js -------------------------------------------------------------------------------- /native-base-theme/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Label.js -------------------------------------------------------------------------------- /native-base-theme/components/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Left.js -------------------------------------------------------------------------------- /native-base-theme/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/ListItem.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Picker.android.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Picker.ios.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Picker.js -------------------------------------------------------------------------------- /native-base-theme/components/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Radio.js -------------------------------------------------------------------------------- /native-base-theme/components/Right.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Right.js -------------------------------------------------------------------------------- /native-base-theme/components/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Segment.js -------------------------------------------------------------------------------- /native-base-theme/components/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Separator.js -------------------------------------------------------------------------------- /native-base-theme/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Spinner.js -------------------------------------------------------------------------------- /native-base-theme/components/Subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Subtitle.js -------------------------------------------------------------------------------- /native-base-theme/components/SwipeRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/SwipeRow.js -------------------------------------------------------------------------------- /native-base-theme/components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Switch.js -------------------------------------------------------------------------------- /native-base-theme/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Tab.js -------------------------------------------------------------------------------- /native-base-theme/components/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/TabBar.js -------------------------------------------------------------------------------- /native-base-theme/components/TabContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/TabContainer.js -------------------------------------------------------------------------------- /native-base-theme/components/TabHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/TabHeading.js -------------------------------------------------------------------------------- /native-base-theme/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Text.js -------------------------------------------------------------------------------- /native-base-theme/components/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Textarea.js -------------------------------------------------------------------------------- /native-base-theme/components/Thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Thumbnail.js -------------------------------------------------------------------------------- /native-base-theme/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Title.js -------------------------------------------------------------------------------- /native-base-theme/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/Toast.js -------------------------------------------------------------------------------- /native-base-theme/components/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/View.js -------------------------------------------------------------------------------- /native-base-theme/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/components/index.js -------------------------------------------------------------------------------- /native-base-theme/variables/commonColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/variables/commonColor.js -------------------------------------------------------------------------------- /native-base-theme/variables/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/variables/material.js -------------------------------------------------------------------------------- /native-base-theme/variables/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/native-base-theme/variables/platform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/About.js -------------------------------------------------------------------------------- /src/components/Articles/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/Articles/Form.js -------------------------------------------------------------------------------- /src/components/Articles/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/Articles/List.js -------------------------------------------------------------------------------- /src/components/Articles/Single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/Articles/Single.js -------------------------------------------------------------------------------- /src/components/UI/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/UI/Error.js -------------------------------------------------------------------------------- /src/components/UI/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/UI/Header.js -------------------------------------------------------------------------------- /src/components/UI/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/UI/Loading.js -------------------------------------------------------------------------------- /src/components/UI/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/UI/Messages.js -------------------------------------------------------------------------------- /src/components/UI/Spacer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/UI/Spacer.js -------------------------------------------------------------------------------- /src/components/UI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/components/UI/index.js -------------------------------------------------------------------------------- /src/constants/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/constants/config.js -------------------------------------------------------------------------------- /src/constants/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/constants/messages.js -------------------------------------------------------------------------------- /src/constants/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/constants/navigation.js -------------------------------------------------------------------------------- /src/containers/Articles/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/containers/Articles/Form.js -------------------------------------------------------------------------------- /src/containers/Articles/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/containers/Articles/List.js -------------------------------------------------------------------------------- /src/containers/Articles/Single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/containers/Articles/Single.js -------------------------------------------------------------------------------- /src/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/containers/index.js -------------------------------------------------------------------------------- /src/images/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/images/app-icon.png -------------------------------------------------------------------------------- /src/images/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/images/launch.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/lib/api.js -------------------------------------------------------------------------------- /src/lib/format-error-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/lib/format-error-messages.js -------------------------------------------------------------------------------- /src/lib/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/lib/images.js -------------------------------------------------------------------------------- /src/lib/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/lib/pagination.js -------------------------------------------------------------------------------- /src/lib/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/lib/string.js -------------------------------------------------------------------------------- /src/models/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/models/articles.js -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/models/index.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/store/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/store/articles.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/tests/__mocks__/@react-native-community/async-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/__mocks__/@react-native-community/async-storage.js -------------------------------------------------------------------------------- /src/tests/__mocks__/react-native-gesture-handler.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/tests/__mocks__/react-native-reanimated.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/tests/__mocks__/react-native-tab-view.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/tests/__mocks__/react-navigation-stack.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/tests/__mocks__/react-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/__mocks__/react-redux.js -------------------------------------------------------------------------------- /src/tests/components/Articles/List.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/Articles/List.test.js -------------------------------------------------------------------------------- /src/tests/components/Articles/Single.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/Articles/Single.test.js -------------------------------------------------------------------------------- /src/tests/components/Articles/__snapshots__/List.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/Articles/__snapshots__/List.test.js.snap -------------------------------------------------------------------------------- /src/tests/components/Articles/__snapshots__/Single.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/Articles/__snapshots__/Single.test.js.snap -------------------------------------------------------------------------------- /src/tests/components/UI/Error.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/Error.test.js -------------------------------------------------------------------------------- /src/tests/components/UI/Header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/Header.test.js -------------------------------------------------------------------------------- /src/tests/components/UI/Loading.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/Loading.test.js -------------------------------------------------------------------------------- /src/tests/components/UI/Messages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/Messages.test.js -------------------------------------------------------------------------------- /src/tests/components/UI/Spacer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/Spacer.test.js -------------------------------------------------------------------------------- /src/tests/components/UI/__snapshots__/Error.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/__snapshots__/Error.test.js.snap -------------------------------------------------------------------------------- /src/tests/components/UI/__snapshots__/Header.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/__snapshots__/Header.test.js.snap -------------------------------------------------------------------------------- /src/tests/components/UI/__snapshots__/Loading.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/__snapshots__/Loading.test.js.snap -------------------------------------------------------------------------------- /src/tests/components/UI/__snapshots__/Messages.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/__snapshots__/Messages.test.js.snap -------------------------------------------------------------------------------- /src/tests/components/UI/__snapshots__/Spacer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/components/UI/__snapshots__/Spacer.test.js.snap -------------------------------------------------------------------------------- /src/tests/lib/format-error-messages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/lib/format-error-messages.test.js -------------------------------------------------------------------------------- /src/tests/lib/images.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/lib/images.test.js -------------------------------------------------------------------------------- /src/tests/lib/pagination.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/lib/pagination.test.js -------------------------------------------------------------------------------- /src/tests/lib/string.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/lib/string.test.js -------------------------------------------------------------------------------- /src/tests/models/articles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/src/tests/models/articles.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcnamee/react-native-expo-starter-kit/HEAD/yarn.lock --------------------------------------------------------------------------------