├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── demo.gif ├── metro.config.js ├── package.json ├── src ├── @types │ ├── png.d.ts │ ├── svg.d.ts │ └── webp.d.ts ├── assets │ ├── bottomFill.svg │ ├── caveira.png │ ├── fire.png │ ├── flame.png │ ├── ice.png │ ├── profile.webp │ └── steel.png ├── data │ └── index.ts ├── global │ └── styles │ │ ├── styled.d.ts │ │ └── theme.ts └── screens │ └── Main │ ├── components │ ├── Avatar │ │ ├── index.tsx │ │ └── styles.tsx │ ├── BottomBar │ │ ├── index.tsx │ │ └── styles.tsx │ ├── BottomContent │ │ ├── index.tsx │ │ └── styles.tsx │ ├── Header │ │ ├── index.tsx │ │ └── styles.tsx │ ├── HeaderText │ │ ├── index.tsx │ │ └── styles.tsx │ └── Star │ │ ├── index.tsx │ │ └── styles.tsx │ ├── index.tsx │ └── styles.tsx ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/babel.config.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/demo.gif -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/png.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png' -------------------------------------------------------------------------------- /src/@types/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/@types/svg.d.ts -------------------------------------------------------------------------------- /src/@types/webp.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.webp' -------------------------------------------------------------------------------- /src/assets/bottomFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/bottomFill.svg -------------------------------------------------------------------------------- /src/assets/caveira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/caveira.png -------------------------------------------------------------------------------- /src/assets/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/fire.png -------------------------------------------------------------------------------- /src/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/flame.png -------------------------------------------------------------------------------- /src/assets/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/ice.png -------------------------------------------------------------------------------- /src/assets/profile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/profile.webp -------------------------------------------------------------------------------- /src/assets/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/assets/steel.png -------------------------------------------------------------------------------- /src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/data/index.ts -------------------------------------------------------------------------------- /src/global/styles/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/global/styles/styled.d.ts -------------------------------------------------------------------------------- /src/global/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/global/styles/theme.ts -------------------------------------------------------------------------------- /src/screens/Main/components/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/Avatar/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/Avatar/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/Avatar/styles.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/BottomBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/BottomBar/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/BottomBar/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/BottomBar/styles.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/BottomContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/BottomContent/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/BottomContent/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/BottomContent/styles.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/Header/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/Header/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/Header/styles.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/HeaderText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/HeaderText/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/HeaderText/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/HeaderText/styles.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/Star/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/Star/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/components/Star/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/components/Star/styles.tsx -------------------------------------------------------------------------------- /src/screens/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/index.tsx -------------------------------------------------------------------------------- /src/screens/Main/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/src/screens/Main/styles.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/gnome/HEAD/yarn.lock --------------------------------------------------------------------------------