├── .expo-shared └── assets.json ├── .gitignore ├── .prettierrc ├── .watchmanconfig ├── App.tsx ├── README.md ├── app.json ├── assets ├── fonts │ ├── Inter-Black.otf │ ├── Inter-BlackItalic.otf │ ├── Inter-Bold.otf │ ├── Inter-BoldItalic.otf │ ├── Inter-ExtraBold.otf │ ├── Inter-ExtraBoldItalic.otf │ ├── Inter-ExtraLight-BETA.otf │ ├── Inter-ExtraLightItalic-BETA.otf │ ├── Inter-Italic.otf │ ├── Inter-Light-BETA.otf │ ├── Inter-LightItalic-BETA.otf │ ├── Inter-Medium.otf │ ├── Inter-MediumItalic.otf │ ├── Inter-Regular.otf │ ├── Inter-SemiBold.otf │ ├── Inter-SemiBoldItalic.otf │ ├── Inter-Thin-BETA.otf │ └── Inter-ThinItalic-BETA.otf ├── icon.png └── splash.png ├── babel.config.js ├── components └── Header.tsx ├── design-starter-kit-artwork.png ├── package.json ├── screens └── Home.tsx ├── styles ├── colors.ts └── typography.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/Inter-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Black.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-BlackItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-ExtraBold.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraLight-BETA.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-ExtraLight-BETA.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraLightItalic-BETA.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-ExtraLightItalic-BETA.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Italic.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-Light-BETA.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Light-BETA.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-LightItalic-BETA.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-LightItalic-BETA.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-MediumItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-SemiBold.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-SemiBoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-Thin-BETA.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-Thin-BETA.otf -------------------------------------------------------------------------------- /assets/fonts/Inter-ThinItalic-BETA.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/fonts/Inter-ThinItalic-BETA.otf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /design-starter-kit-artwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/design-starter-kit-artwork.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/screens/Home.tsx -------------------------------------------------------------------------------- /styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/styles/colors.ts -------------------------------------------------------------------------------- /styles/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/styles/typography.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiberJW/design-starter-kit/HEAD/yarn.lock --------------------------------------------------------------------------------