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
await login("user01@gmail.com", "Test@123");
// Stores user and token in AsyncStorageawait register("New User", "email@example.com", "password123", "1234567890");await getProducts(); // Fetch all products
await getProductById(1); // Fetch product by ID
await createProduct({ name: "Sample" }); // Create new product
await updateProductById(1, { name: "Updated" }); // Update product
await deleteProductById(1); // Delete productnpm install
npx expo start