connectivity_handler

Creator: coderz1093

Last updated:

0 purchases

connectivity_handler Image
connectivity_handler Images

Languages

Categories

Add to Cart

Description:

connectivity handler

Connectivity_Handler
Features #
You can easily check network connectivity without any hassle.Just pass your widget in dart ConnectivityHandler()
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
connectivity_handler: ^0.0.4
copied to clipboard
Usage #
TODO: Include short and useful examples for package users. Add longer examples
to /example folder.
class ExampleScreen extends StatelessWidget{

const ExampleScreen({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
appBar: AppBar(title: const Text("Example Screen")),
body: ConnectivityHandler(const Text("Use your own widget")),
),
);
}
}
copied to clipboard
Import #
import 'package:connectivity_handler/connectivity_handler.dart';
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.