CONFIGURING LIVE SERVER DEPLOYMENT

Configuring Live Server Deployment

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