14 lines
515 B
Dart
14 lines
515 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.11.236.74:8000/images/kent_logo2.png";
|
|
|
|
// Which one to use?
|
|
static const String logoUrl = logoUrlDevice; // CHANGE THIS WHEN TESTING ON REAL DEVICE
|
|
}
|