Merge pull request 'changed base url' (#109) from base_url into main

Reviewed-on: https://repo.ravanertebat.com/TM/tm_app/pulls/109
This commit is contained in:
a.ghabeli
2025-09-07 12:34:06 +03:30
+8 -10
View File
@@ -1,5 +1,3 @@
import 'package:flutter/foundation.dart';
class AppConfig {
// این فلگ نشان می‌دهد که آیا برنامه در حالت Development است یا خیر.
// می‌توانید این مقدار را با استفاده از environment variables در زمان بیلد تغییر دهید.
@@ -14,14 +12,14 @@ class AppConfig {
// return '192.168.1.103:8081';
// if (isDevelopment) {
// // Handle different platforms for local development
if (kIsWeb) {
// For web, use localhost
// return 'https://app.opplens.com';
return 'http://localhost:8081';
} else {
// For Android emulator, use 10.0.2.2 (special IP for host machine)
return 'http://10.0.2.2:8081';
}
// if (kIsWeb) {
// For web, use localhost
return 'https://app.opplens.com';
// return 'http://localhost:8081';
// } else {
// For Android emulator, use 10.0.2.2 (special IP for host machine)
// return 'http://10.0.2.2:8081';
// }
// else if (Platform.isIOS) {
// // For iOS simulator, use localhost
// return 'http://localhost:8081';