├── .expo-shared ├── README.md └── assets.json ├── .expo ├── README.md ├── packager-info.json └── settings.json ├── .gitignore ├── .idea ├── .gitignore ├── modules.xml ├── reactnative-ecommerce-charlie.iml └── vcs.xml ├── App.js ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── fonts │ └── muli │ │ ├── Muli-Bold.ttf │ │ ├── Muli-BoldItalic.ttf │ │ ├── Muli-ExtraLight.ttf │ │ ├── Muli-ExtraLightItalic.ttf │ │ ├── Muli-Italic.ttf │ │ ├── Muli-Light.ttf │ │ ├── Muli-LightItalic.ttf │ │ ├── Muli-Semi-BoldItalic.ttf │ │ ├── Muli-SemiBold.ttf │ │ └── Muli.ttf ├── icon.png ├── icons │ ├── Cart Icon.png │ ├── bar_home_icon.png │ ├── bar_home_icon_active.png │ ├── bar_profile_icon.png │ ├── bar_profile_icon_active.png │ ├── cart_beg.png │ ├── cart_beg_active.png │ ├── cosmetics.png │ ├── electronics.png │ ├── garments.png │ ├── grocery.png │ └── scan_icons.png ├── image │ ├── banners │ │ └── banner.png │ ├── emptybox.png │ └── success.png ├── logo │ ├── logo.png │ └── logo_white.png └── splash.png ├── babel.config.js ├── components ├── BasicProductList │ ├── BasicProductList.js │ └── index.js ├── CartProductList │ ├── CartProductList.js │ └── index.js ├── CategoryList │ ├── CategoryList.js │ └── index.js ├── CustomAlert │ └── CustomAlert.js ├── CustomButton │ ├── CustomButton.js │ └── index.js ├── CustomCard │ ├── CustomCard.js │ └── index.js ├── CustomIconButton │ ├── CustomIconButton.js │ └── index.js ├── CustomInput │ ├── CustomInput.js │ └── index.js ├── HomeScreen │ ├── CategoryList.js │ ├── HomeHeader.js │ ├── NewArrivals.js │ ├── PromotionSlider.js │ └── SearchBar.js ├── OptionList │ ├── OptionList.js │ └── index.js ├── OrderList │ ├── OrderList.js │ └── index.js ├── ProductCard │ ├── ProductCard.js │ └── index.js ├── ProductList │ ├── ProductList.js │ └── index.js ├── UserList │ ├── UserList.js │ └── index.js ├── UserProfileCard │ ├── UserProfileCard.js │ └── index.js └── WishList │ ├── WishList.js │ └── index.js ├── constants ├── AppData.js ├── Colors.js ├── Network.js └── index.js ├── eas.json ├── image └── easybuy.png ├── package.json ├── routes ├── Routes.js └── tabs │ └── Tabs.js ├── screens ├── admin │ ├── AddCategoryScreen.js │ ├── AddProductScreen.js │ ├── DashboardScreen.js │ ├── EditCategoryScreen.js │ ├── EditProductScreen.js │ ├── ViewCategoryScreen.js │ ├── ViewOrderDetailScreen.js │ ├── ViewOrdersScreen.js │ ├── ViewProductScreen.js │ └── ViewUsersScreen.js ├── auth │ ├── ForgetPasswordScreen.js │ ├── LoginScreen.js │ ├── SignupScreen.js │ └── Splash.js ├── profile │ ├── MyAccountScreen.js │ ├── MyWishlistScreen.js │ ├── UpdatePasswordScreen.js │ └── UserProfileScreen.js └── user │ ├── CartScreen.js │ ├── CategoriesScreen.js │ ├── CheckoutScreen.js │ ├── HomeScreen.js │ ├── MyOrderDetailScreen.js │ ├── MyOrderScreen.js │ ├── OrderConfirmScreen.js │ └── ProductDetailScreen.js ├── screenshot ├── Admin │ ├── Admin-Add_Categories.png │ ├── Admin-Add_Product.png │ ├── Admin-Categroies.png │ ├── Admin-Dashboard.png │ ├── Admin-OrderDetails.png │ ├── Admin-Orders.png │ ├── Admin-Product.png │ └── Admin-Users.png ├── Auth │ ├── ForgetPasswordScreen.png │ ├── LoginScreen.png │ ├── SignupScreen.png │ └── SplashScreen.png └── User │ ├── User-Cart.png │ ├── User-Categories.png │ ├── User-Category(Empyt).png │ ├── User-Checkout.png │ ├── User-Checkout2.png │ ├── User-Home.png │ ├── User-MyAccount.png │ ├── User-MyOrderDetail.png │ ├── User-MyOrders.png │ ├── User-MyWishlist.png │ ├── User-ProductDetail.png │ ├── User-Profile.png │ └── User-UpdatePassword.png └── states ├── actionCreaters └── actionCreaters.js ├── actionTypes └── actionTypes.js ├── reducers ├── cartReducer.js └── index.js └── store.js /.expo-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.expo-shared/README.md -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.expo/README.md -------------------------------------------------------------------------------- /.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.expo/packager-info.json -------------------------------------------------------------------------------- /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/reactnative-ecommerce-charlie.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.idea/reactnative-ecommerce-charlie.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Semi-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-Semi-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/fonts/muli/Muli.ttf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/Cart Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/Cart Icon.png -------------------------------------------------------------------------------- /assets/icons/bar_home_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/bar_home_icon.png -------------------------------------------------------------------------------- /assets/icons/bar_home_icon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/bar_home_icon_active.png -------------------------------------------------------------------------------- /assets/icons/bar_profile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/bar_profile_icon.png -------------------------------------------------------------------------------- /assets/icons/bar_profile_icon_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/bar_profile_icon_active.png -------------------------------------------------------------------------------- /assets/icons/cart_beg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/cart_beg.png -------------------------------------------------------------------------------- /assets/icons/cart_beg_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/cart_beg_active.png -------------------------------------------------------------------------------- /assets/icons/cosmetics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/cosmetics.png -------------------------------------------------------------------------------- /assets/icons/electronics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/electronics.png -------------------------------------------------------------------------------- /assets/icons/garments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/garments.png -------------------------------------------------------------------------------- /assets/icons/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/grocery.png -------------------------------------------------------------------------------- /assets/icons/scan_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/icons/scan_icons.png -------------------------------------------------------------------------------- /assets/image/banners/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/image/banners/banner.png -------------------------------------------------------------------------------- /assets/image/emptybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/image/emptybox.png -------------------------------------------------------------------------------- /assets/image/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/image/success.png -------------------------------------------------------------------------------- /assets/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/logo/logo.png -------------------------------------------------------------------------------- /assets/logo/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/logo/logo_white.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/BasicProductList/BasicProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/BasicProductList/BasicProductList.js -------------------------------------------------------------------------------- /components/BasicProductList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BasicProductList"; 2 | -------------------------------------------------------------------------------- /components/CartProductList/CartProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CartProductList/CartProductList.js -------------------------------------------------------------------------------- /components/CartProductList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CartProductList"; 2 | -------------------------------------------------------------------------------- /components/CategoryList/CategoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CategoryList/CategoryList.js -------------------------------------------------------------------------------- /components/CategoryList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CategoryList"; 2 | -------------------------------------------------------------------------------- /components/CustomAlert/CustomAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CustomAlert/CustomAlert.js -------------------------------------------------------------------------------- /components/CustomButton/CustomButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CustomButton/CustomButton.js -------------------------------------------------------------------------------- /components/CustomButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CustomButton"; 2 | -------------------------------------------------------------------------------- /components/CustomCard/CustomCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CustomCard/CustomCard.js -------------------------------------------------------------------------------- /components/CustomCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CustomCard"; 2 | -------------------------------------------------------------------------------- /components/CustomIconButton/CustomIconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CustomIconButton/CustomIconButton.js -------------------------------------------------------------------------------- /components/CustomIconButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CustomIconButton"; 2 | -------------------------------------------------------------------------------- /components/CustomInput/CustomInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/CustomInput/CustomInput.js -------------------------------------------------------------------------------- /components/CustomInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CustomInput"; 2 | -------------------------------------------------------------------------------- /components/HomeScreen/CategoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/HomeScreen/CategoryList.js -------------------------------------------------------------------------------- /components/HomeScreen/HomeHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/HomeScreen/HomeHeader.js -------------------------------------------------------------------------------- /components/HomeScreen/NewArrivals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/HomeScreen/NewArrivals.js -------------------------------------------------------------------------------- /components/HomeScreen/PromotionSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/HomeScreen/PromotionSlider.js -------------------------------------------------------------------------------- /components/HomeScreen/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/HomeScreen/SearchBar.js -------------------------------------------------------------------------------- /components/OptionList/OptionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/OptionList/OptionList.js -------------------------------------------------------------------------------- /components/OptionList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./OptionList"; 2 | -------------------------------------------------------------------------------- /components/OrderList/OrderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/OrderList/OrderList.js -------------------------------------------------------------------------------- /components/OrderList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./OrderList"; 2 | -------------------------------------------------------------------------------- /components/ProductCard/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/ProductCard/ProductCard.js -------------------------------------------------------------------------------- /components/ProductCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProductCard"; 2 | -------------------------------------------------------------------------------- /components/ProductList/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/ProductList/ProductList.js -------------------------------------------------------------------------------- /components/ProductList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProductList"; 2 | -------------------------------------------------------------------------------- /components/UserList/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/UserList/UserList.js -------------------------------------------------------------------------------- /components/UserList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./UserList"; 2 | -------------------------------------------------------------------------------- /components/UserProfileCard/UserProfileCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/UserProfileCard/UserProfileCard.js -------------------------------------------------------------------------------- /components/UserProfileCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./UserProfileCard"; 2 | -------------------------------------------------------------------------------- /components/WishList/WishList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/components/WishList/WishList.js -------------------------------------------------------------------------------- /components/WishList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./WishList"; 2 | -------------------------------------------------------------------------------- /constants/AppData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/constants/AppData.js -------------------------------------------------------------------------------- /constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/constants/Colors.js -------------------------------------------------------------------------------- /constants/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/constants/Network.js -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/constants/index.js -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/eas.json -------------------------------------------------------------------------------- /image/easybuy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/image/easybuy.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/package.json -------------------------------------------------------------------------------- /routes/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/routes/Routes.js -------------------------------------------------------------------------------- /routes/tabs/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/routes/tabs/Tabs.js -------------------------------------------------------------------------------- /screens/admin/AddCategoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/AddCategoryScreen.js -------------------------------------------------------------------------------- /screens/admin/AddProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/AddProductScreen.js -------------------------------------------------------------------------------- /screens/admin/DashboardScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/DashboardScreen.js -------------------------------------------------------------------------------- /screens/admin/EditCategoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/EditCategoryScreen.js -------------------------------------------------------------------------------- /screens/admin/EditProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/EditProductScreen.js -------------------------------------------------------------------------------- /screens/admin/ViewCategoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/ViewCategoryScreen.js -------------------------------------------------------------------------------- /screens/admin/ViewOrderDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/ViewOrderDetailScreen.js -------------------------------------------------------------------------------- /screens/admin/ViewOrdersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/ViewOrdersScreen.js -------------------------------------------------------------------------------- /screens/admin/ViewProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/ViewProductScreen.js -------------------------------------------------------------------------------- /screens/admin/ViewUsersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/admin/ViewUsersScreen.js -------------------------------------------------------------------------------- /screens/auth/ForgetPasswordScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/auth/ForgetPasswordScreen.js -------------------------------------------------------------------------------- /screens/auth/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/auth/LoginScreen.js -------------------------------------------------------------------------------- /screens/auth/SignupScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/auth/SignupScreen.js -------------------------------------------------------------------------------- /screens/auth/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/auth/Splash.js -------------------------------------------------------------------------------- /screens/profile/MyAccountScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/profile/MyAccountScreen.js -------------------------------------------------------------------------------- /screens/profile/MyWishlistScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/profile/MyWishlistScreen.js -------------------------------------------------------------------------------- /screens/profile/UpdatePasswordScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/profile/UpdatePasswordScreen.js -------------------------------------------------------------------------------- /screens/profile/UserProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/profile/UserProfileScreen.js -------------------------------------------------------------------------------- /screens/user/CartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/CartScreen.js -------------------------------------------------------------------------------- /screens/user/CategoriesScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/CategoriesScreen.js -------------------------------------------------------------------------------- /screens/user/CheckoutScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/CheckoutScreen.js -------------------------------------------------------------------------------- /screens/user/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/HomeScreen.js -------------------------------------------------------------------------------- /screens/user/MyOrderDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/MyOrderDetailScreen.js -------------------------------------------------------------------------------- /screens/user/MyOrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/MyOrderScreen.js -------------------------------------------------------------------------------- /screens/user/OrderConfirmScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/OrderConfirmScreen.js -------------------------------------------------------------------------------- /screens/user/ProductDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screens/user/ProductDetailScreen.js -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Add_Categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Add_Categories.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Add_Product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Add_Product.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Categroies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Categroies.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Dashboard.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-OrderDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-OrderDetails.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Orders.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Product.png -------------------------------------------------------------------------------- /screenshot/Admin/Admin-Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Admin/Admin-Users.png -------------------------------------------------------------------------------- /screenshot/Auth/ForgetPasswordScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Auth/ForgetPasswordScreen.png -------------------------------------------------------------------------------- /screenshot/Auth/LoginScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Auth/LoginScreen.png -------------------------------------------------------------------------------- /screenshot/Auth/SignupScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Auth/SignupScreen.png -------------------------------------------------------------------------------- /screenshot/Auth/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/Auth/SplashScreen.png -------------------------------------------------------------------------------- /screenshot/User/User-Cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Cart.png -------------------------------------------------------------------------------- /screenshot/User/User-Categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Categories.png -------------------------------------------------------------------------------- /screenshot/User/User-Category(Empyt).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Category(Empyt).png -------------------------------------------------------------------------------- /screenshot/User/User-Checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Checkout.png -------------------------------------------------------------------------------- /screenshot/User/User-Checkout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Checkout2.png -------------------------------------------------------------------------------- /screenshot/User/User-Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Home.png -------------------------------------------------------------------------------- /screenshot/User/User-MyAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-MyAccount.png -------------------------------------------------------------------------------- /screenshot/User/User-MyOrderDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-MyOrderDetail.png -------------------------------------------------------------------------------- /screenshot/User/User-MyOrders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-MyOrders.png -------------------------------------------------------------------------------- /screenshot/User/User-MyWishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-MyWishlist.png -------------------------------------------------------------------------------- /screenshot/User/User-ProductDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-ProductDetail.png -------------------------------------------------------------------------------- /screenshot/User/User-Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-Profile.png -------------------------------------------------------------------------------- /screenshot/User/User-UpdatePassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/screenshot/User/User-UpdatePassword.png -------------------------------------------------------------------------------- /states/actionCreaters/actionCreaters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/states/actionCreaters/actionCreaters.js -------------------------------------------------------------------------------- /states/actionTypes/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/states/actionTypes/actionTypes.js -------------------------------------------------------------------------------- /states/reducers/cartReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/states/reducers/cartReducer.js -------------------------------------------------------------------------------- /states/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/states/reducers/index.js -------------------------------------------------------------------------------- /states/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaSarwar/reactnative-ecommerce-charlie/HEAD/states/store.js --------------------------------------------------------------------------------