bottom_loader 0.1.1 bottom_loader: ^0.1.1 copied to clipboard
A simple lightweight flutter plugin to display bottom loader using modal sheet.
import 'package:bottom_loader/bottom_loader.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Bottom progress Demo',
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
BottomLoader bl;
@override
Widget build(BuildContext context) {
bl = new BottomLoader(
context,
isDismissible: false,
);
//changing the default message
bl.style(
message: 'Please wait...',
);
return Scaffold(
appBar: AppBar(
title: Text('Bottom Loading'),
),
body: Container(
child: Center(
child: RaisedButton(
child: Text('Show bottom loader'),
onPressed: () {
//for showing the bottom loader invoke the show() method
bl.display();
//navigating to next page after 5 seconds
Future.delayed(Duration(seconds: 5)).whenComplete(() {
bl.close();
Navigator.of(context).push(MaterialPageRoute(
builder: (context) => Scaffold(
body: Center(child: Text('Second Screen')),
)));
});
}),
),
),
);
}
}