bottom_loader 0.1.0 copy "bottom_loader: ^0.1.0" to clipboard
bottom_loader: ^0.1.0 copied to clipboard

outdated

A simple lightweight flutter plugin to display bottom loader using modal sheet.

example/lib/main.dart

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')),
                          )));
                });
              }),
        ),
      ),
    );
  }
}
20
likes
0
pub points
77%
popularity

Publisher

unverified uploader

A simple lightweight flutter plugin to display bottom loader using modal sheet.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on bottom_loader