liquid_pull_refresh 1.0.6 liquid_pull_refresh: ^1.0.6 copied to clipboard
A beautiful and custom refresh indicator or image loader, icon, with some cool animations and transitions for flutter.
import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:liquid_pull_refresh/liquid_pull_refresh.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Liquid Pull Refresh'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, this.title}) : super(key: key);
final String? title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
final GlobalKey<LiquidPullRefreshState> _refreshIndicatorKey =
GlobalKey<LiquidPullRefreshState>();
static int refreshNum = 10; // number that changes when refreshed
Stream<int> counterStream =
Stream<int>.periodic(const Duration(seconds: 3), (x) => refreshNum);
ScrollController? _scrollController;
@override
void initState() {
super.initState();
_scrollController = ScrollController();
}
static final List<String> _items = <String>[
'A',
'B',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
'J',
'K',
'L',
'M',
'N'
];
Future<void> _handleRefresh() {
final Completer<void> completer = Completer<void>();
Timer(const Duration(seconds: 3), () {
completer.complete();
});
setState(() {
refreshNum = Random().nextInt(100);
});
return completer.future.then<void>((_) {
ScaffoldMessenger.of(_scaffoldKey.currentState!.context).showSnackBar(
SnackBar(
content: const Text('Refresh complete'),
action: SnackBarAction(
label: 'RETRY',
onPressed: () {
_refreshIndicatorKey.currentState!.show();
},
),
),
);
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
key: _scaffoldKey,
appBar: AppBar(
title: Stack(
children: <Widget>[
const Align(
alignment: Alignment(-1.0, 0.0),
child: Icon(Icons.reorder),
),
Align(
alignment: const Alignment(-0.3, 0.0),
child: Text(widget.title!),
),
],
),
),
body: LiquidPullRefresh(
key: _refreshIndicatorKey,
onRefresh: _handleRefresh,
showChildOpacityTransition: false,
child: StreamBuilder<int>(
stream: counterStream,
builder: (context, snapshot) {
return ListView.builder(
padding: kMaterialListPadding,
itemCount: _items.length,
controller: _scrollController,
itemBuilder: (BuildContext context, int index) {
final String item = _items[index];
return ListTile(
isThreeLine: true,
leading: CircleAvatar(child: Text(item)),
title: Text('This item represents $item.'),
subtitle: Text(
'Even more additional list item information appears on line three. ${snapshot.data}'),
);
},
);
},
),
),
);
}
}