├── .expo ├── README.md └── settings.json ├── .gitignore ├── LICENSE ├── README.md ├── Random-Generator ├── .gitignore ├── app.json ├── app │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── city.tsx │ │ ├── example.md │ │ ├── gidle.tsx │ │ ├── index.tsx │ │ └── unsplash.tsx │ ├── +html.tsx │ ├── +not-found.tsx │ ├── _layout.tsx │ └── information.tsx ├── assets │ ├── cityData.json │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ ├── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ └── me.jpg ├── babel.config.js ├── components │ ├── EditScreenInfo.tsx │ ├── ExternalLink.tsx │ ├── StyledText.tsx │ ├── Themed.tsx │ ├── __tests__ │ │ └── StyledText-test.js │ ├── useClientOnlyValue.ts │ ├── useClientOnlyValue.web.ts │ ├── useColorScheme.ts │ └── useColorScheme.web.ts ├── constants │ └── Colors.ts ├── package-lock.json ├── package.json └── tsconfig.json └── img ├── city_react.png ├── env_react.png ├── gidle_react.png ├── me_react.png └── unsplash_react.png /.expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/.expo/README.md -------------------------------------------------------------------------------- /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .expo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/README.md -------------------------------------------------------------------------------- /Random-Generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/.gitignore -------------------------------------------------------------------------------- /Random-Generator/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app.json -------------------------------------------------------------------------------- /Random-Generator/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /Random-Generator/app/(tabs)/city.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/(tabs)/city.tsx -------------------------------------------------------------------------------- /Random-Generator/app/(tabs)/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/(tabs)/example.md -------------------------------------------------------------------------------- /Random-Generator/app/(tabs)/gidle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/(tabs)/gidle.tsx -------------------------------------------------------------------------------- /Random-Generator/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /Random-Generator/app/(tabs)/unsplash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/(tabs)/unsplash.tsx -------------------------------------------------------------------------------- /Random-Generator/app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/+html.tsx -------------------------------------------------------------------------------- /Random-Generator/app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/+not-found.tsx -------------------------------------------------------------------------------- /Random-Generator/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/_layout.tsx -------------------------------------------------------------------------------- /Random-Generator/app/information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/app/information.tsx -------------------------------------------------------------------------------- /Random-Generator/assets/cityData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/cityData.json -------------------------------------------------------------------------------- /Random-Generator/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /Random-Generator/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /Random-Generator/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/images/favicon.png -------------------------------------------------------------------------------- /Random-Generator/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/images/icon.png -------------------------------------------------------------------------------- /Random-Generator/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/images/splash.png -------------------------------------------------------------------------------- /Random-Generator/assets/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/assets/me.jpg -------------------------------------------------------------------------------- /Random-Generator/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/babel.config.js -------------------------------------------------------------------------------- /Random-Generator/components/EditScreenInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/EditScreenInfo.tsx -------------------------------------------------------------------------------- /Random-Generator/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/ExternalLink.tsx -------------------------------------------------------------------------------- /Random-Generator/components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/StyledText.tsx -------------------------------------------------------------------------------- /Random-Generator/components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/Themed.tsx -------------------------------------------------------------------------------- /Random-Generator/components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /Random-Generator/components/useClientOnlyValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/useClientOnlyValue.ts -------------------------------------------------------------------------------- /Random-Generator/components/useClientOnlyValue.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/useClientOnlyValue.web.ts -------------------------------------------------------------------------------- /Random-Generator/components/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /Random-Generator/components/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/components/useColorScheme.web.ts -------------------------------------------------------------------------------- /Random-Generator/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/constants/Colors.ts -------------------------------------------------------------------------------- /Random-Generator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/package-lock.json -------------------------------------------------------------------------------- /Random-Generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/package.json -------------------------------------------------------------------------------- /Random-Generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/Random-Generator/tsconfig.json -------------------------------------------------------------------------------- /img/city_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/img/city_react.png -------------------------------------------------------------------------------- /img/env_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/img/env_react.png -------------------------------------------------------------------------------- /img/gidle_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/img/gidle_react.png -------------------------------------------------------------------------------- /img/me_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/img/me_react.png -------------------------------------------------------------------------------- /img/unsplash_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoodyLinwc/Random-Generator-React-Native/HEAD/img/unsplash_react.png --------------------------------------------------------------------------------