vexana 2.8.0 vexana: ^2.8.0 copied to clipboard
Manage your network layer with dio. You will be able to use it very easily network operations.
import 'package:example/json_place_holder/json_place_holder.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Material App',
home: JsonPlaceHolder(),
);
}
}