Updated 5 June 2026
In this guide, we will learn how to build mobile app with Medusa.js.
Medusa.js is an open-source e-commerce backend that manages products, customers, and orders.
Your application communicates with Medusa through APIs. This approach keeps the backend and frontend separate, making development and maintenance easier.
Medusa.js is an open-source e-commerce backend that provides APIs for managing products, customers, and orders.
It also includes an admin dashboard and a Store API that frontend applications can use.
Explore more about Medusa.js on its official documentation.
The Medusa backend runs on Node.js with PostgreSQL.
Next, your Application sends HTTP requests to Medusa’s Store API, which returns JSON data for rendering.
There are several advantages of using Medusa for mobile development:
This approach makes it easier to build a mobile app with Medusa.js without handling complex backend logic yourself.
We will build a simple product listing page in Flutter. The app connects to Medusa, fetches all products, and displays them in a grid with images, titles, and prices.
Node.js 20 or later
PostgreSQL
Flutter SDK
Android Studio or Xcode
Create a new Medusa project:
|
1 |
npx create-medusa-app@latest my-medusa-store |
Start the backend:
|
1 2 |
cd my-medusa-store/apps/backend npx medusa develop |
In the admin dashboard, add products and create a publishable API key.
At this stage, we begin building the Flutter frontend for Medusa.js, allowing seamless communication with the backend.
|
1 2 |
flutter create medusa_mobile_app cd medusa_mobile_app |
Add required dependencies in pubspec.yaml:
|
1 2 3 4 5 6 7 8 |
dependencies: flutter: sdk: flutter dio: ^5.9.0 flutter_bloc: ^9.1.1 go_router: ^16.0.0 flutter_dotenv: ^5.2.1 flutter_secure_storage: ^9.2.4 |
Install dependencies:
|
1 |
flutter pub get |
To configure the project, create a .env file in the root directory:
|
1 2 |
MEDUSA_BASE_URL=http://10.0.2.2:9000 MEDUSA_PUBLISHABLE_API_KEY=your_api_key_here |
Create environment helper (lib/config/env.dart):
|
1 2 3 4 5 6 7 8 9 10 |
import 'package:flutter_dotenv/flutter_dotenv.dart'; class AppEnv { static Future<void> load() async { await dotenv.load(fileName: '.env'); } static String get baseUrl => dotenv.env['MEDUSA_BASE_URL'] ?? ''; static String get publishableApiKey => dotenv.env['MEDUSA_PUBLISHABLE_API_KEY'] ?? ''; } |
For API communication, we define a ProductService that handles requests to Medusa’s Store API.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import 'package:dio/dio.dart'; import '../config/env.dart'; class ProductService { final Dio _dio = Dio(BaseOptions( baseUrl: AppEnv.baseUrl, headers: {'x-publishable-api-key': AppEnv.publishableApiKey}, )); Future<List<dynamic>> fetchProducts() async { final response = await _dio.get('/store/products'); return response.data['products']; } } |
The product listing screen displays data fetched from Medusa’s Store API.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
import 'package:flutter/material.dart'; import '../services/product_service.dart'; import '../config/env.dart'; class ProductListScreen extends StatefulWidget { @override State<ProductListScreen> createState() => _ProductListScreenState(); } class _ProductListScreenState extends State<ProductListScreen> { List<dynamic> _products = []; bool _loading = true; @override void initState() { super.initState(); _loadProducts(); } Future<void> _loadProducts() async { await AppEnv.load(); final service = ProductService(); final products = await service.fetchProducts(); setState(() { _products = products; _loading = false; }); } @override Widget build(BuildContext context) { if (_loading) { return Scaffold(body: Center(child: CircularProgressIndicator())); } return Scaffold( appBar: AppBar(title: Text('Products'), backgroundColor: Colors.teal), body: GridView.builder( padding: EdgeInsets.all(12), gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, childAspectRatio: 0.7, ), itemCount: _products.length, itemBuilder: (context, index) { final product = _products[index]; return Card( child: Column( children: [ Expanded(child: Container(color: Colors.grey[200])), Padding( padding: EdgeInsets.all(8), child: Text(product['title'], style: TextStyle(fontWeight: FontWeight.bold)), ), ], ), ); }, ), ); } } |
Update lib/main.dart:
|
1 2 3 4 5 6 7 |
import 'package:flutter/material.dart'; import 'screens/product_list.dart'; void main() => runApp(MaterialApp( home: ProductListScreen(), debugShowCheckedModeBanner: false, )); |
Start the Medusa server:
Fetch products from Medusa’s Store API and display them in a clean Flutter GridView.
Medusa.js simplifies mobile e-commerce development by reducing backend complexity. With just a few lines of code, Flutter can connect to a powerful commerce system.
You can extend the app with features like cart, checkout, and authentication for a scalable solution.
You can also explore other informative blogs on Mobikul for more knowledge.
Thanks for reading!
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.