Ty

switch to package:web to support wasm compilation

... ... @@ -612,9 +612,12 @@ class GetDelegate extends RouterDelegate<RouteDecoder>
}) async {
// remove history or page entries until you meet route
var iterator = currentConfiguration;
while (_canPop(popMode) &&
iterator != null &&
iterator.pageSettings?.name != fullRoute) {
while (_canPop(popMode) && iterator != null) {
//the next line causes wasm compile error if included in the while loop
//https://github.com/flutter/flutter/issues/140110
if (iterator.pageSettings?.name == fullRoute) {
break;
}
await _pop(popMode, null);
// replace iterator
iterator = currentConfiguration;
... ...
... ... @@ -40,7 +40,7 @@ extension PageArgExt on BuildContext {
String get location {
final parser = router.routeInformationParser;
final config = delegate.currentConfiguration;
return parser?.restoreRouteInformation(config)?.location ?? '/';
return parser?.restoreRouteInformation(config)?.uri.toString() ?? '/';
}
GetDelegate get delegate {
... ...
// ignore: avoid_web_libraries_in_flutter
import 'dart:html' as html;
import 'package:web/web.dart' as html;
import '../../get_utils.dart';
... ... @@ -25,7 +25,7 @@ class GeneralPlatform {
static bool get isIOS {
// maxTouchPoints is needed to separate iPad iOS13 vs new MacOS
return GetUtils.hasMatch(_navigator.platform, r'/iPad|iPhone|iPod/') ||
(_navigator.platform == 'MacIntel' && _navigator.maxTouchPoints! > 1);
(_navigator.platform == 'MacIntel' && _navigator.maxTouchPoints > 1);
}
static bool get isFuchsia => false;
... ...
... ... @@ -11,6 +11,7 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
web: any
dev_dependencies:
flutter_lints: ^2.0.3
... ...