SETTING UP THE MOBILE APP
Setting Up the Mobile App (Flutter)
Update Backend API URLs
1. Locate the API configuration file in your Flutter project:
- Common path: lib/config/api_config.dart
2. Update the base URL to match your backend server:
const String baseUrl =
'http://your-server-ip/your_project/api/';
'http://your-server-ip/your_project/api/';
3. Save the file.