A new Flutter package for developer who want to show overlay loader or progressbar for completing future task.
Overlay loader without overlaying Appbar
Overlay Loader without overlaying BottomAppBar and also overlaying AppBar
dependencies:
flutter_overlay_loader: ^1.0.3
import 'package:flutter_overlay_loader/flutter_overlay_loader.dart';
When start network call then call this line of code..
Loader.show(context,progressIndicator:LinearProgressIndicator());
After finished network call then call :
Loader.hide();
You can customize this loader..
Loader.show(context,
isSafeAreaOverlay: false,
isAppbarOverlay: true,
isBottomBarOverlay: false,
progressIndicator: CircularProgressIndicator(),
themeData: Theme.of(context)
.copyWith(accentColor: Colors.black38),
overlayColor: Color(0x99E8EAF6));
Finally dispose call hide method on dispose method :
@override
void dispose() {
Loader.hide();
super.dispose();
}