├── .expo-shared └── assets.json ├── .gitignore ├── .vscode └── settings.json ├── App.tsx ├── README.md ├── app.json ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── splash.png │ └── workos_logo.png ├── babel.config.js ├── components ├── EditScreenInfo.tsx ├── StyledText.tsx ├── Themed.tsx └── __tests__ │ └── StyledText-test.js ├── constants ├── Colors.ts └── Layout.ts ├── hooks ├── useCachedResources.ts └── useColorScheme.ts ├── navigation ├── LinkingConfiguration.ts └── index.tsx ├── package.json ├── screens ├── ModalScreen.tsx ├── NotFoundScreen.tsx ├── ProfileScreen.tsx ├── TabOneScreen.tsx ├── TabThreeScreen.tsx └── TabTwoScreen.tsx ├── server.js ├── tsconfig.json └── types.tsx /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /assets/images/workos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/assets/images/workos_logo.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/EditScreenInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/components/EditScreenInfo.tsx -------------------------------------------------------------------------------- /components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/components/StyledText.tsx -------------------------------------------------------------------------------- /components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/components/Themed.tsx -------------------------------------------------------------------------------- /components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /constants/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/constants/Layout.ts -------------------------------------------------------------------------------- /hooks/useCachedResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/hooks/useCachedResources.ts -------------------------------------------------------------------------------- /hooks/useColorScheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/hooks/useColorScheme.ts -------------------------------------------------------------------------------- /navigation/LinkingConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/navigation/LinkingConfiguration.ts -------------------------------------------------------------------------------- /navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/navigation/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/package.json -------------------------------------------------------------------------------- /screens/ModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/screens/ModalScreen.tsx -------------------------------------------------------------------------------- /screens/NotFoundScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/screens/NotFoundScreen.tsx -------------------------------------------------------------------------------- /screens/ProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/screens/ProfileScreen.tsx -------------------------------------------------------------------------------- /screens/TabOneScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/screens/TabOneScreen.tsx -------------------------------------------------------------------------------- /screens/TabThreeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/screens/TabThreeScreen.tsx -------------------------------------------------------------------------------- /screens/TabTwoScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/screens/TabTwoScreen.tsx -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/server.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workos/react-native-expo-example-app/HEAD/types.tsx --------------------------------------------------------------------------------