A Flutter package that enables your flutter apps to be network aware. It overlays a widget over your app when internet connection is off. You can choose to allow users interact/dismiss the prompt or block all interactions.
Android and IOS
import 'package:network_aware/network_aware.dart';
NetworkAware(
canDismiss: true,
position: NetworkAwarePosition.TOP,
indicatorWidget: IndicatorWidget(),
child: MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'NetworkAware Test'),
),
);
//For full example, visit the example app repo