Files
Bus-Infotainment--IBus-/lib/utils/web_workarrounds.dart
2024-05-01 12:29:59 +01:00

15 lines
289 B
Dart

import 'package:flutter/foundation.dart';
String WW_AssetSource(String location) {
if (kIsWeb) {
// remove the first character if it is a '/'
if (location.startsWith('/')) {
location = location.substring(1);
}
return "assets/$location";
}
return location;
}