src/
├── assets/
│ └── images/
├── components/
│ ├── Auth/
│ │ ├── Login.tsx
│ │ └── Register.tsx
│ ├── Product/
│ │ ├── ProductList.tsx
│ │ └── ProductDetail.tsx
│ └── Common/
│ ├── Header.tsx
│ └── Footer.tsx
├── navigation/
│ └── MainNavigator.tsx
├── screens/
│ ├── HomeScreen.tsx
│ ├── CartScreen.tsx
│ ├── ProfileScreen.tsx
│ └── OrderScreen.tsx
├── services/
│ ├── auth.ts
│ ├── product.ts
│ └── order.ts
├── styles/
│ ├── colors.ts
│ └── common.ts
├── utils/
│ └── api.ts
├── App.tsx
└── index.ts