├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── favicon.png ├── fonts │ ├── SF-Pro-Display-Bold.otf │ ├── SF-Pro-Display-Medium.otf │ ├── SF-Pro-Display-Regular.otf │ └── SF-Pro-Display-Semibold.otf ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── Authentication │ ├── ForgotPassword.tsx │ ├── Login.tsx │ ├── Onboarding │ │ ├── Dot.tsx │ │ ├── Onboarding.tsx │ │ ├── Slide.tsx │ │ ├── SubSlide.tsx │ │ └── index.ts │ ├── PasswordChanged.tsx │ ├── SignUp.tsx │ ├── Welcome.tsx │ ├── assets │ │ └── 5.png │ ├── components │ │ ├── Footer.tsx │ │ └── SocialLogin.tsx │ └── index.tsx ├── Home │ ├── Cart │ │ ├── AddCard.tsx │ │ ├── Card.tsx │ │ ├── CardLayout.tsx │ │ ├── Cart.tsx │ │ ├── CartContainer.tsx │ │ ├── Checkout.tsx │ │ ├── Item.tsx │ │ ├── SwipeableRow.tsx │ │ ├── assets │ │ │ ├── mastercard.png │ │ │ └── visa.png │ │ └── index.ts │ ├── Drawer │ │ ├── Drawer.tsx │ │ ├── DrawerItem.tsx │ │ ├── assets │ │ │ └── drawer.png │ │ └── index.ts │ ├── EditProfile │ │ ├── CheckboxGroup.tsx │ │ ├── Configuration.tsx │ │ ├── EditProfile.tsx │ │ ├── PersonalInfo.tsx │ │ ├── RoundCheckboxGroup.tsx │ │ ├── Tabs.tsx │ │ └── index.ts │ ├── FavoriteOutfits │ │ ├── FavoriteOutfits.tsx │ │ ├── Footer.tsx │ │ ├── Outfit.tsx │ │ ├── TopCurve.tsx │ │ └── index.ts │ ├── OutfitIdeas │ │ ├── Background.tsx │ │ ├── Card.tsx │ │ ├── Categories.tsx │ │ ├── Category.tsx │ │ ├── OutfitIdeas.tsx │ │ ├── assets │ │ │ └── background.png │ │ └── index.ts │ ├── Settings │ │ ├── Notification.tsx │ │ ├── Settings.tsx │ │ └── index.ts │ ├── TransactionHistory │ │ ├── Graph │ │ │ ├── Graph.tsx │ │ │ ├── Scale.ts │ │ │ ├── Underlay.tsx │ │ │ └── index.ts │ │ ├── TopCurve.tsx │ │ ├── Transaction.tsx │ │ ├── TransactionHistory.tsx │ │ └── index.ts │ └── index.tsx └── components │ ├── Button.tsx │ ├── Container.tsx │ ├── Content.tsx │ ├── Form │ ├── Checkbox.tsx │ └── TextInput.tsx │ ├── Header.tsx │ ├── LoadAssets.tsx │ ├── Navigation.ts │ ├── RoundIcon.tsx │ ├── RoundIconButton.tsx │ ├── ScrollableContent.tsx │ ├── Theme.tsx │ ├── assets │ ├── 1.png │ ├── 2.png │ └── 3.png │ └── index.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/app.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/fonts/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/fonts/SF-Pro-Display-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/fonts/SF-Pro-Display-Semibold.otf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/package.json -------------------------------------------------------------------------------- /src/Authentication/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/Authentication/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/Login.tsx -------------------------------------------------------------------------------- /src/Authentication/Onboarding/Dot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/Onboarding/Dot.tsx -------------------------------------------------------------------------------- /src/Authentication/Onboarding/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/Onboarding/Onboarding.tsx -------------------------------------------------------------------------------- /src/Authentication/Onboarding/Slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/Onboarding/Slide.tsx -------------------------------------------------------------------------------- /src/Authentication/Onboarding/SubSlide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/Onboarding/SubSlide.tsx -------------------------------------------------------------------------------- /src/Authentication/Onboarding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Onboarding"; -------------------------------------------------------------------------------- /src/Authentication/PasswordChanged.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/PasswordChanged.tsx -------------------------------------------------------------------------------- /src/Authentication/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/SignUp.tsx -------------------------------------------------------------------------------- /src/Authentication/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/Welcome.tsx -------------------------------------------------------------------------------- /src/Authentication/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/assets/5.png -------------------------------------------------------------------------------- /src/Authentication/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/components/Footer.tsx -------------------------------------------------------------------------------- /src/Authentication/components/SocialLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/components/SocialLogin.tsx -------------------------------------------------------------------------------- /src/Authentication/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Authentication/index.tsx -------------------------------------------------------------------------------- /src/Home/Cart/AddCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/AddCard.tsx -------------------------------------------------------------------------------- /src/Home/Cart/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/Card.tsx -------------------------------------------------------------------------------- /src/Home/Cart/CardLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/CardLayout.tsx -------------------------------------------------------------------------------- /src/Home/Cart/Cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/Cart.tsx -------------------------------------------------------------------------------- /src/Home/Cart/CartContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/CartContainer.tsx -------------------------------------------------------------------------------- /src/Home/Cart/Checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/Checkout.tsx -------------------------------------------------------------------------------- /src/Home/Cart/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/Item.tsx -------------------------------------------------------------------------------- /src/Home/Cart/SwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/SwipeableRow.tsx -------------------------------------------------------------------------------- /src/Home/Cart/assets/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/assets/mastercard.png -------------------------------------------------------------------------------- /src/Home/Cart/assets/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Cart/assets/visa.png -------------------------------------------------------------------------------- /src/Home/Cart/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Cart"; 2 | -------------------------------------------------------------------------------- /src/Home/Drawer/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Drawer/Drawer.tsx -------------------------------------------------------------------------------- /src/Home/Drawer/DrawerItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Drawer/DrawerItem.tsx -------------------------------------------------------------------------------- /src/Home/Drawer/assets/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Drawer/assets/drawer.png -------------------------------------------------------------------------------- /src/Home/Drawer/index.ts: -------------------------------------------------------------------------------- 1 | export { default, DRAWER_WIDTH, assets } from './Drawer'; -------------------------------------------------------------------------------- /src/Home/EditProfile/CheckboxGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/EditProfile/CheckboxGroup.tsx -------------------------------------------------------------------------------- /src/Home/EditProfile/Configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/EditProfile/Configuration.tsx -------------------------------------------------------------------------------- /src/Home/EditProfile/EditProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/EditProfile/EditProfile.tsx -------------------------------------------------------------------------------- /src/Home/EditProfile/PersonalInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/EditProfile/PersonalInfo.tsx -------------------------------------------------------------------------------- /src/Home/EditProfile/RoundCheckboxGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/EditProfile/RoundCheckboxGroup.tsx -------------------------------------------------------------------------------- /src/Home/EditProfile/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/EditProfile/Tabs.tsx -------------------------------------------------------------------------------- /src/Home/EditProfile/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EditProfile"; -------------------------------------------------------------------------------- /src/Home/FavoriteOutfits/FavoriteOutfits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/FavoriteOutfits/FavoriteOutfits.tsx -------------------------------------------------------------------------------- /src/Home/FavoriteOutfits/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/FavoriteOutfits/Footer.tsx -------------------------------------------------------------------------------- /src/Home/FavoriteOutfits/Outfit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/FavoriteOutfits/Outfit.tsx -------------------------------------------------------------------------------- /src/Home/FavoriteOutfits/TopCurve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/FavoriteOutfits/TopCurve.tsx -------------------------------------------------------------------------------- /src/Home/FavoriteOutfits/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FavoriteOutfits'; -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/OutfitIdeas/Background.tsx -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/OutfitIdeas/Card.tsx -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/OutfitIdeas/Categories.tsx -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/OutfitIdeas/Category.tsx -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/OutfitIdeas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/OutfitIdeas/OutfitIdeas.tsx -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/OutfitIdeas/assets/background.png -------------------------------------------------------------------------------- /src/Home/OutfitIdeas/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OutfitIdeas'; -------------------------------------------------------------------------------- /src/Home/Settings/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Settings/Notification.tsx -------------------------------------------------------------------------------- /src/Home/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/Home/Settings/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Settings'; -------------------------------------------------------------------------------- /src/Home/TransactionHistory/Graph/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/TransactionHistory/Graph/Graph.tsx -------------------------------------------------------------------------------- /src/Home/TransactionHistory/Graph/Scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/TransactionHistory/Graph/Scale.ts -------------------------------------------------------------------------------- /src/Home/TransactionHistory/Graph/Underlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/TransactionHistory/Graph/Underlay.tsx -------------------------------------------------------------------------------- /src/Home/TransactionHistory/Graph/index.ts: -------------------------------------------------------------------------------- 1 | export { default, DataPoint } from './Graph'; -------------------------------------------------------------------------------- /src/Home/TransactionHistory/TopCurve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/TransactionHistory/TopCurve.tsx -------------------------------------------------------------------------------- /src/Home/TransactionHistory/Transaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/TransactionHistory/Transaction.tsx -------------------------------------------------------------------------------- /src/Home/TransactionHistory/TransactionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/TransactionHistory/TransactionHistory.tsx -------------------------------------------------------------------------------- /src/Home/TransactionHistory/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TransactionHistory'; -------------------------------------------------------------------------------- /src/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/Home/index.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Content.tsx -------------------------------------------------------------------------------- /src/components/Form/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Form/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/Form/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Form/TextInput.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/LoadAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/LoadAssets.tsx -------------------------------------------------------------------------------- /src/components/Navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Navigation.ts -------------------------------------------------------------------------------- /src/components/RoundIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/RoundIcon.tsx -------------------------------------------------------------------------------- /src/components/RoundIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/RoundIconButton.tsx -------------------------------------------------------------------------------- /src/components/ScrollableContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/ScrollableContent.tsx -------------------------------------------------------------------------------- /src/components/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/Theme.tsx -------------------------------------------------------------------------------- /src/components/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/assets/1.png -------------------------------------------------------------------------------- /src/components/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/assets/2.png -------------------------------------------------------------------------------- /src/components/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/assets/3.png -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr-ge/react-native-fashion/HEAD/yarn.lock --------------------------------------------------------------------------------