
flutter-use-http-package
✓ Official★ 2,600by flutter · part of flutter/skills
Use the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.
Use the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.
Inspect the full instructions your agent will receiveExpandCollapse
This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.
by flutter
Use the http package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.
npx skills add https://github.com/flutter/skills --skill flutter-use-http-package
Download ZIPGitHub2.6k
Implementing Flutter Networking
Contents
-
Configuration & Permissions
-
Request Execution & Response Handling
-
Background Parsing
-
Workflow: Executing Network Operations
-
Examples
Request Execution & Response Handling
Execute HTTP operations and map responses to strongly typed Dart objects.
-
URIs: Always parse URL strings using
Uri.parse('your_url'). -
Headers: Inject authorization and content-type headers via the
headersparameter map. UseHttpHeaders.authorizationHeaderfor auth tokens. -
Payloads: For POST and PUT requests, encode the body using
jsonEncode()fromdart:convert. -
Status Validation: Evaluate
response.statusCode. Treat200 OK(GET/PUT/DELETE) and201 CREATED(POST) as success. -
Error Handling: Throw explicit exceptions for non-success status codes. Never return
nullon failure, as this preventsFutureBuilderfrom triggering its error state and causes infinite loading indicators. -
Deserialization: Parse the raw string using
jsonDecode(response.body)and map it to a custom Dart object using a factory constructor (e.g.,fromJson).
Background Parsing
Offload expensive JSON parsing to a separate Isolate to prevent UI jank (frame drops).
-
Import
package:flutter/foundation.dart. -
Use the
compute()function to run the parsing logic in a background isolate. -
Ensure the parsing function passed to
compute()is a top-level function or a static method, as closures or instance methods cannot be passed across isolates.
Workflow: Executing Network Operations
Use the following checklist to implement and validate network operations.
Task Progress:
-
- Define the strongly typed Dart model with a
fromJsonfactory constructor.
- Define the strongly typed Dart model with a
-
- Implement the network request method returning a
Future<Model>.
- Implement the network request method returning a
-
- Apply conditional logic based on the operation type:
-
If fetching data (GET): Append query parameters to the URI.
-
If mutating data (POST/PUT): Set
'Content-Type': 'application/json; charset=UTF-8'and attach thejsonEncodebody. -
If deleting data (DELETE): Return an empty model instance on success (
200 OK). -
- Validate the
statusCodeand throw anExceptionon failure.
- Validate the
-
- Integrate the
Futureinto the UI usingFutureBuilder.
- Integrate the
-
- Handle
snapshot.hasData,snapshot.hasError, and default to aCircularProgressIndicator.
- Handle
-
- Feedback Loop: Run the app -> trigger the network request -> review console for unhandled exceptions -> fix parsing or permission errors.
Examples
High-Fidelity Implementation: Fetching and Parsing in the Background
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
// 1. Top-level parsing function for Isolate
List parsePhotos(String responseBody) {
final parsed = (jsonDecode(responseBody) as List )
.cast >();
return parsed.map (Photo.fromJson).toList();
}
// 2. Network execution with background parsing
Future > fetchPhotos() async {
final response = await http.get(
Uri.parse('https://jsonplaceholder.typicode.com/photos'),
headers: {
HttpHeaders.authorizationHeader: 'Bearer your_token_here',
HttpHeaders.acceptHeader: 'application/json',
},
);
if (response.statusCode == 200) {
// Offload heavy parsing to a background isolate
return compute(parsePhotos, response.body);
} else {
throw Exception('Failed to load photos. Status: ${response.statusCode}');
}
}
// 3. Strongly typed model
class Photo {
final int id;
final String title;
final String thumbnailUrl;
const Photo({
required this.id,
required this.title,
required this.thumbnailUrl,
});
factory Photo.fromJson(Map json) {
return Photo(
id: json['id'] as int,
title: json['title'] as String,
thumbnailUrl: json['thumbnailUrl'] as String,
);
}
}
// 4. UI Integration
class PhotoGallery extends StatefulWidget {
const PhotoGallery({super.key});
@override
State createState() => _PhotoGalleryState();
}
class _PhotoGalleryState extends State {
late Future > _futurePhotos;
@override
void initState() {
super.initState();
// Initialize Future once to prevent re-fetching on rebuilds
_futurePhotos = fetchPhotos();
}
@override
Widget build(BuildContext context) {
return FutureBuilder >(
future: _futurePhotos,
builder: (context, snapshot) {
if (snapshot.hasData) {
final photos = snapshot.data!;
return ListView.builder(
itemCount: photos.length,
itemBuilder: (context, index) => ListTile(
leading: Image.network(photos[index].thumbnailUrl),
title: Text(photos[index].title),
),
);
} else if (snapshot.hasError) {
return Center(child: Text('Error: ${snapshot.error}'));
}
// Default loading state
return const Center(child: CircularProgressIndicator());
},
);
}
}
npx skills add https://github.com/flutter/skills --skill flutter-use-http-packageRun this in your project — your agent picks the skill up automatically.
Configuration & Permissions
Configure the environment and platform-specific permissions required for network access.
- Add the
httppackage dependency via the terminal:
flutter pub add http
- Import the package in your Dart files:
import 'package:http/http.dart' as http;
- Configure Android permissions by adding the Internet permission to
android/app/src/main/AndroidManifest.xml:
- Configure macOS entitlements by adding the network client key to both
macos/Runner/DebugProfile.entitlementsandmacos/Runner/Release.entitlements:
com.apple.security.network.client
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.