├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky ├── .npmignore ├── commit-msg └── pre-commit ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── app.json ├── babel.config.js ├── index.js ├── metro.config.js ├── package.json ├── src │ ├── App.tsx │ ├── assets │ │ ├── fonts │ │ │ └── SpaceMono-Regular.ttf │ │ └── images │ │ │ ├── adaptive-icon.png │ │ │ ├── favicon.png │ │ │ ├── icon.png │ │ │ └── splash.png │ ├── components │ │ ├── EditScreenInfo.tsx │ │ ├── StyledText.tsx │ │ ├── TabTour.tsx │ │ ├── Themed.tsx │ │ └── __tests__ │ │ │ └── StyledText-test.js │ ├── constants │ │ ├── Colors.ts │ │ └── Layout.ts │ ├── hooks │ │ ├── useCachedResources.ts │ │ └── useColorScheme.ts │ ├── navigation │ │ ├── LinkingConfiguration.ts │ │ └── index.tsx │ ├── screens │ │ ├── ModalScreen.tsx │ │ ├── NotFoundScreen.tsx │ │ ├── TabFourScreen.tsx │ │ ├── TabOneScreen.tsx │ │ ├── TabThreeScreen.tsx │ │ └── TabTwoScreen.tsx │ └── types.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── package.json ├── scripts └── bootstrap.js ├── src ├── __tests__ │ └── index.test.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.npmignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint -E HUSKY_GIT_PARAMS 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/index.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /example/src/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /example/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/assets/images/favicon.png -------------------------------------------------------------------------------- /example/src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/assets/images/icon.png -------------------------------------------------------------------------------- /example/src/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/assets/images/splash.png -------------------------------------------------------------------------------- /example/src/components/EditScreenInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/components/EditScreenInfo.tsx -------------------------------------------------------------------------------- /example/src/components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/components/StyledText.tsx -------------------------------------------------------------------------------- /example/src/components/TabTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/components/TabTour.tsx -------------------------------------------------------------------------------- /example/src/components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/components/Themed.tsx -------------------------------------------------------------------------------- /example/src/components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /example/src/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/constants/Colors.ts -------------------------------------------------------------------------------- /example/src/constants/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/constants/Layout.ts -------------------------------------------------------------------------------- /example/src/hooks/useCachedResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/hooks/useCachedResources.ts -------------------------------------------------------------------------------- /example/src/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/hooks/useColorScheme.ts -------------------------------------------------------------------------------- /example/src/navigation/LinkingConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/navigation/LinkingConfiguration.ts -------------------------------------------------------------------------------- /example/src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/navigation/index.tsx -------------------------------------------------------------------------------- /example/src/screens/ModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/screens/ModalScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/NotFoundScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/screens/NotFoundScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/TabFourScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/screens/TabFourScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/TabOneScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/screens/TabOneScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/TabThreeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/screens/TabThreeScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/TabTwoScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/screens/TabTwoScreen.tsx -------------------------------------------------------------------------------- /example/src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/src/types.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saad-Bashar/react-native-bottom-tab-tour/HEAD/yarn.lock --------------------------------------------------------------------------------