network_analyzer 0.1.0 copy "network_analyzer: ^0.1.0" to clipboard
network_analyzer: ^0.1.0 copied to clipboard

Network monitoring and analysis for mobile devices: real-time monitoring, throughput scanner, scanner history, and diagnostic tools (MTR, Ping, TCPing).

example/lib/main.dart

import 'package:flutter/material.dart';

import 'src/monitoring_screen.dart';

void main() => runApp(const ExampleApp());

/// Example host application for the network_analyzer plugin.
class ExampleApp extends StatelessWidget {
  /// Creates the example app.
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) => MaterialApp(
    title: 'NetworkAnalyzer Example',
    theme: ThemeData(
      colorScheme: ColorScheme.fromSeed(
        seedColor: const Color(0xFF0D47A1),
      ),
    ),
    darkTheme: ThemeData(
      colorScheme: ColorScheme.fromSeed(
        seedColor: const Color(0xFF0D47A1),
        brightness: Brightness.dark,
      ),
    ),
    home: const MonitoringScreen(),
  );
}
1
likes
160
points
115
downloads

Documentation

API reference

Publisher

verified publisherkoaladevelopments.com

Weekly Downloads

Network monitoring and analysis for mobile devices: real-time monitoring, throughput scanner, scanner history, and diagnostic tools (MTR, Ping, TCPing).

Repository (GitHub)
View/report issues

Topics

#network #monitoring #connectivity #diagnostics

License

MIT (license)

Dependencies

flutter, network_analyzer_android, network_analyzer_ios, network_analyzer_platform_interface

More

Packages that depend on network_analyzer

Packages that implement network_analyzer