https://flutter.dev/docs/get-started/flutter-for/react-native-devs#futures
// Dart import 'dart:convert'; import 'package:http/http.dart' as http; class Example { Future<String> _getIPAddress() { final url = 'https://httpbin.org/ip'; return http.get(url).then((response) { String ip = jsonDecode(response.body)['origin']; return ip; }); } } main() { final example = new Example(); example ._getIPAddress() .then((ip) => print(ip)) .catchError((error) => print(error)); }
上記のサンプルをDartpadで実行しようとすると、
Error compiling to JavaScript: unsupported import: package:http/http.dart
上記のエラーが出るのですが、どういうエラーなのかよくわかりません。
Dartpadではhttpパッケージをインポートできない、ということなのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/07 00:50
2020/11/07 01:11