flutter_network_inspector 0.0.8 copy "flutter_network_inspector: ^0.0.8" to clipboard
flutter_network_inspector: ^0.0.8 copied to clipboard

This package helps you to monitor networks calls done using the http package with in the app. if you are using the dart's http package and not using any third party packages, you an use this library t [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:network_interceptor_demo/demo.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const Demo(),
    );
  }
}
17
likes
0
points
39
downloads

Publisher

verified publisherflutterthemer.blogspot.com

Weekly Downloads

This package helps you to monitor networks calls done using the http package with in the app. if you are using the dart's http package and not using any third party packages, you an use this library to track all your http requests.

Homepage

License

unknown (license)

Dependencies

flutter, http

More

Packages that depend on flutter_network_inspector