enhanced_http 4.2.0 copy "enhanced_http: ^4.2.0" to clipboard
enhanced_http: ^4.2.0 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
54%
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

http, http_parser, path

More

Packages that depend on enhanced_http