Files
kent_logistics_app/lib/config/app_config.dart

14 lines
516 B
Dart
Raw Normal View History

2025-12-03 11:57:05 +05:30
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)
2025-12-23 11:44:56 +05:30
static const String logoUrlDevice = "http://192.168.0.105:8000/images/kent_logo2.png";
2025-12-03 11:57:05 +05:30
// Which one to use?
static const String logoUrl = logoUrlDevice; // CHANGE THIS WHEN TESTING ON REAL DEVICE
}