httpパッケージのインストール
以下を参考に、httpパッケージをインストールします
https://pub.dev/packages/http#-installing-tab-
- pubspec.ymlの
dependencies
にhttp: ^0.12.0+4
を追記- ※バージョンは記事執筆当時のもの
dependencies:
http: ^0.12.0+4
flutter pub get
HTTP通信をしてみる
使い方はREADMEを見ましょう
https://pub.dev/packages/http#-readme-tab-
- http.dartをインポートします
import 'package:http/http.dart' as http;
- GETの場合
final String url = 'http://www.test.com';
http.get(url);
- POSTの場合
final dynamic body = {'test': 'aaa'};
final String url = 'http://www.test.com';
http.post(url, body: body);