better_internet_connectivity_checker 0.0.1
better_internet_connectivity_checker: ^0.0.1 copied to clipboard
Pure-Dart internet connectivity checker. Distinguishes "interface up" from "can reach the public internet". Pluggable probes, policies, and triggers.
example/lib/main.dart
import 'package:flutter/widgets.dart';
import 'package:material_ui/material_ui.dart' show MaterialApp;
import 'home/home_view.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) =>
const MaterialApp(title: 'better_internet_connectivity_checker example', home: HomeView());
}