CONFIGURING LIVE SERVER DEPLOYMENT
Configuring Live Server Deployment
Update API URLs in Flutter
1. Open the API configuration file:
lib/config/api_config.dart
2. Update the base URL to the live server:
const String baseUrl = 'https://yourdomain.com/api/';
3. Rebuild the app:
flutter build apk --release