myShoppy is a modern, mobile-first e-commerce application developed in React Native (Expo SDK 54) for household products. It provides an intuitive, end-to-end shopping experience—from product discovery and department-wise category browsing to real-time cart management, checkout input validation, and order confirmation.
| Home Screen | Categories Screen | Catalog & Filters | Product Details | Cart Screen | Checkout Screen | Order Success |
|---|---|---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
- Home Screen (
home.jpg): Search bar, Hero Banner ("Everything You Need"), quick category pills, and Featured Products grid with un-cropped images and favorite heart toggles. - Categories Screen (
categories.jpg): 2-column poster-card layout for Kitchen, Cleaning, Home Decor, Storage, Utility, and Daily Essentials. - Products Catalog & Filters (
products_catalog.jpg): Category breadcrumb, instant search bar, and interactive filter chips (All Items, Under ₹500, In Stock, 4.5+ Rating). - Product Details View (
product_details.jpg): Complete un-cropped product photo (resizeMode="contain"), brand details, stock status, discount badge, and Add to Cart action button. - Cart Screen (
cart.jpg): Real-time item additions,- quantity +pill controls, item deletion, subtotal calculation, delivery fee, and live tab badge counter. - Checkout Screen (
checkout.jpg): Input form validation for Full Name, 10-digit Phone Number, and Address with order summary recap. - Order Success Screen (
order_success.jpg): Instant order reference ID (MS-XXXXXX), recipient summary, total paid, and automated navigation stack reset.
- Core Framework: React Native (0.81), Expo (SDK 54), React Navigation 7
- Language: TypeScript (
npx tsc --noEmitverified clean with 0 errors) - State Management: React Context API (
CartContext) withuseCallback&useMemooptimizations - Design System: Vanilla React Native
StyleSheettokens for colors (#0C3B24brand green), typography, and shadows - Icons & Assets:
@expo/vector-icons(Ionicons) and vector brand logo assets
- Node.js
20.19.0or higher - npm or yarn
-
Install Dependencies:
npm install
-
Run on Web:
npm run web
Press
win terminal to open browser window. -
Run on Mobile Device / Emulator:
npm run android # For Android Emulator / Device npm run ios # For iOS Simulator
-
Verify Type-Safety:
npx tsc --noEmit
HomeScreen (Featured Products & Quick Categories)
└── SearchBar / CategoriesScreen
└── ProductsScreen (Category & Price Filters)
└── ProductDetailsScreen (Un-cropped Image View & Cart Controls)
└── CartScreen (Subtotal, Delivery Fee & Item Removal)
└── CheckoutScreen (Input Form Validation)
└── OrderSuccessScreen (Order Reference ID & Reset)
- Consistent Header Logo System: Centered brand logo on Home, Top-Left logo image with optional back arrow across all other screens (
AppHeader). - Un-Cropped Product Imagery:
resizeMode="contain"inside#F8FAFCimage containers prevents product photos from being sliced across all device screens. - Card-Level Cart Actions: Tapping Add to Cart on any card instantly converts to
- qty +controls right on the card. - Single-Invocation Execution: Fixed double add-to-cart invocation bugs across Home, Catalog, and Search screens.
- Automated Stack Resets: Tapping any tab icon (Home, Categories, Cart) or clicking "Continue Shopping" automatically resets that tab stack back to its root screen.






