enhanced_http 4.1.1 copy "enhanced_http: ^4.1.1" to clipboard
enhanced_http: ^4.1.1 copied to clipboard

A wrapper around the dart http package provided by Google which is inspired by axios

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/home.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Enhanced HTTP Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Home(),
    );
  }
}
4
likes
140
pub points
63%
popularity

Publisher

verified publishersliitfoss.org

A wrapper around the dart http package provided by Google which is inspired by axios

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http, http_parser, path

More

Packages that depend on enhanced_http