dio5_log 5.1.2 copy "dio5_log: ^5.1.2" to clipboard
dio5_log: ^5.1.2 copied to clipboard

A plug-in that captures requests and views them within the application, providing functions such as request replication and JSON expansion

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_page.dart';
import 'http_utils.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Demo of diox_log',
      theme: ThemeData(
        useMaterial3: true,
        primarySwatch: Colors.blue,
      ),
      darkTheme: ThemeData.dark(
        useMaterial3: true,
      ),
      themeMode: ThemeMode.system,
      home: MyHomePage(title: 'Demo of diox_log'),
    );
  }
}
3
likes
150
points
901
downloads

Publisher

unverified uploader

Weekly Downloads

A plug-in that captures requests and views them within the application, providing functions such as request replication and JSON expansion

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

dio, flutter

More

Packages that depend on dio5_log