当我将intl: ^0.17.0添加到pubspec.yaml时
我得到以下错误:
../../snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/intl-0.17.0/lib/intl_browser.dart:12:8: Error: Not found: 'dart:html'
import 'dart:html';
^
../../snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/intl-0.17.0/lib/intl_browser.dart:24:48: Error: Undefined name 'window'.
Intl.systemLocale = Intl.canonicalizedLocale(window.navigator.language);
^^^^^^只有在添加intl包时才会发生这种情况。
我怎么才能解决这个问题?
发布于 2022-06-25 10:22:04
问题是我已经导入了:package:intl/intl_browser.dart
而不是:package:intl/intl.dart
https://stackoverflow.com/questions/72752858
复制相似问题