enhanced_http 3.1.1 copy "enhanced_http: ^3.1.1" to clipboard
enhanced_http: ^3.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(),
    );
  }
}
5
likes
0
pub points
53%
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

License

unknown (LICENSE)

Dependencies

flutter, http, http_parser, path

More

Packages that depend on enhanced_http