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";
|
|
|
|
|
|
2025-12-23 10:22:01 +05:30
|
|
|
// For Physical Device (Replace with your actual PC local IP)
|
|
|
|
|
//static const String logoUrlDevice = "http://103.248.30.24:3030/images/kent_logo2.png";
|
|
|
|
|
|
2025-12-03 11:57:05 +05:30
|
|
|
// For Physical Device (Replace with your actual PC local IP)
|
2025-12-18 11:03:25 +05:30
|
|
|
static const String logoUrlDevice = "http://10.119.0.74: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
|
|
|
|
|
}
|