enhanced_http 4.1.0 enhanced_http: ^4.1.0 copied to clipboard
A wrapper around the dart http package provided by Google which is inspired by axios
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(),
);
}
}