Files
kent_logistics_app/lib/config/app_config.dart
2025-12-25 10:26:47 +05:30

14 lines
517 B
Dart

class AppConfig {
// For Website & Browser (PC)
static const String logoUrlWeb = "http://127.0.0.1:8000/images/kent_logo2.png";
// For Android Emulator
static const String logoUrlEmulator = "http://10.0.2.2:8000/images/kent_logo2.png";
// For Physical Device (Replace with your actual PC local IP)
static const String logoUrlDevice = "http://10.202.215.164:8000/images/kent_logo2.png";
// Which one to use?
static const String logoUrl = logoUrlDevice; // CHANGE THIS WHEN TESTING ON REAL DEVICE
}