├── .eslintrc.js ├── .expo-shared └── assets.json ├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ └── validate.yml ├── .gitignore ├── .markdownlint.json ├── .prettierrc.js ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── App.ts ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.json ├── asserts-source └── expo-and-typescript.svg ├── assets ├── PokerKings-Regular.ttf ├── app-icon.png ├── bensound-thejazzpiano.mp3 ├── splash-screen.png └── wtfs-per-minute.png ├── babel.config.js ├── package.json ├── screen-shot.png ├── src ├── App.tsx ├── HomeScreen.tsx └── demoScreens │ ├── AccelerometerScreen.tsx │ ├── AmplitudeScreen.tsx │ ├── AppleAuthenticationScreen.tsx │ ├── AssetScreen.tsx │ ├── AudioScreen.tsx │ ├── BarCodeScannerScreen.tsx │ ├── BlurViewScreen.tsx │ ├── CameraScreen.tsx │ ├── FacebookScreen.tsx │ ├── FontScreen.tsx │ ├── GyroscopeScreen.tsx │ ├── LinearGradientScreen.tsx │ ├── LocalAuthenticationScreen.tsx │ ├── MapViewScreen.tsx │ ├── SvgScreen.tsx │ ├── VectorIconsScreen.tsx │ └── constants │ ├── ConstantsScreen.tsx │ ├── ManifestScreen.tsx │ ├── PlatformScreen.tsx │ └── SystemFontsScreen.tsx ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /.expo/ 3 | 4 | *.log -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | singleAttributePerLine: true, 3 | }; 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/App.ts -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/app.json -------------------------------------------------------------------------------- /asserts-source/expo-and-typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/asserts-source/expo-and-typescript.svg -------------------------------------------------------------------------------- /assets/PokerKings-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/assets/PokerKings-Regular.ttf -------------------------------------------------------------------------------- /assets/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/assets/app-icon.png -------------------------------------------------------------------------------- /assets/bensound-thejazzpiano.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/assets/bensound-thejazzpiano.mp3 -------------------------------------------------------------------------------- /assets/splash-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/assets/splash-screen.png -------------------------------------------------------------------------------- /assets/wtfs-per-minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/assets/wtfs-per-minute.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/package.json -------------------------------------------------------------------------------- /screen-shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/screen-shot.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/HomeScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/AccelerometerScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/AccelerometerScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/AmplitudeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/AmplitudeScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/AppleAuthenticationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/AppleAuthenticationScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/AssetScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/AssetScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/AudioScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/AudioScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/BarCodeScannerScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/BarCodeScannerScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/BlurViewScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/BlurViewScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/CameraScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/CameraScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/FacebookScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/FacebookScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/FontScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/FontScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/GyroscopeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/GyroscopeScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/LinearGradientScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/LinearGradientScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/LocalAuthenticationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/LocalAuthenticationScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/MapViewScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/MapViewScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/SvgScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/SvgScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/VectorIconsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/VectorIconsScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/constants/ConstantsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/constants/ConstantsScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/constants/ManifestScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/constants/ManifestScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/constants/PlatformScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/constants/PlatformScreen.tsx -------------------------------------------------------------------------------- /src/demoScreens/constants/SystemFontsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/src/demoScreens/constants/SystemFontsScreen.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janaagaard75/expo-and-typescript/HEAD/yarn.lock --------------------------------------------------------------------------------