A fast, modern mobile starter kit using React Native + Mock APIs — built to get you moving fast ⚡
- 🔐 Simple Authentication using
AsyncStorage(login, register, fetch profile) - ⚙️ Full CRUD support for products with mockapi.io
- 📱 Mobile-first UI design powered by Expo
- 🧪 Perfect for prototyping, testing, or bootstrapping your next mobile app
awaitlogin("user01@gmail.com","Test@123");// Stores user and token in AsyncStorageawaitregister("New User","email@example.com","password123","1234567890");awaitgetProducts();// Fetch all productsawaitgetProductById(1);// Fetch product by IDawaitcreateProduct({name: "Sample"});// Create new productawaitupdateProductById(1,{name: "Updated"});// Update productawaitdeleteProductById(1);// Delete productnpm install
npx expo start