mih-project/mih_ui/lib/mih_helpers/mih_utils_stub.dart
2026-07-09 12:02:58 +02:00

8 lines
286 B
Dart

// Create this file anywhere, e.g., lib/mih_config/mih_web_utils_stub.dart
void openWebWindow(String url, [String? target]) {
// Safe no-op or fallback on Linux (e.g., could use url_launcher if needed)
}
bool isWebStandalone() {
return false; // Always false on native Linux app
}