check_inet 1.0.1 copy "check_inet: ^1.0.1" to clipboard
check_inet: ^1.0.1 copied to clipboard

Really basic plugin that provides a simple way to check if the Internet is available on an Android device.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:check_inet/check_inet.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  bool _internetActive = false;

  @override
  void initState() {
    super.initState();
    checkInternetAvailability();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> checkInternetAvailability() async {
    bool internetActive;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      internetActive = await CheckInet.checkInternet;
    } on Exception {
      internetActive = false;
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _internetActive = internetActive;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: _internetActive ? Text('Internet is available!') : CircularProgressIndicator(),
        ),
      ),
    );
  }
}
2
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Really basic plugin that provides a simple way to check if the Internet is available on an Android device.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on check_inet