refresher 0.0.3 copy "refresher: ^0.0.3" to clipboard
refresher: ^0.0.3 copied to clipboard

outdated

Customize Pull to Refresh Widget

Refresher #

My custom Pull to Refresh Widget, mimicking iOS Pull to Refresh except for the toolbar

Installation #

First, add refresher as a dependency in your pubspec.yaml file.

refresher: ^0.0.3

Example #

class RefresherDemo extends StatefulWidget {
  @override
  _RefresherDemoState createState() => _RefresherDemoState();
}

class _RefresherDemoState extends State<RefresherDemo> with SingleTickerProviderStateMixin {
  String _title = "Refresher Demo";

  double percentage = 0.0;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text(_title), actions: [
        IconButton(
          icon: Icon(Icons.navigate_next),
          onPressed: () {
            Navigator.push(context,
                MaterialPageRoute(builder: (BuildContext context) => InfiniteRefresherDemo()));
          },
        )
      ]),
      body: Refresher(
          loadingSize: 50.0,
          margin: EdgeInsets.all(8.0),
          onRefresh: () async {
            int counter = 0;
            Timer.periodic(Duration(milliseconds: 1000), (t) {
              counter++;
              if (this.mounted)
                setState(() {
                  _title = "Fetching${List.filled(counter, ".").join()}";
                  if (counter == 5) t.cancel();
                });
            });
            await Future.delayed(new Duration(milliseconds: 6000));
            if (this.mounted)
              setState(() {
                _title = "Refresher Demo";
              });
          },
          child: Column(
              children: List.generate(
            100,
            (index) => Text("Here is $index"),
          ))),
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Customize Pull to Refresh Widget

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on refresher