Skip to content

Instantly share code, notes, and snippets.

@felangel
Created December 27, 2018 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felangel/31fecde59f8009c9469d862a3e863f2e to your computer and use it in GitHub Desktop.
Save felangel/31fecde59f8009c9469d862a3e863f2e to your computer and use it in GitHub Desktop.
[flutter_infinite_list] bottom loader
class BottomLoader extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
alignment: Alignment.center,
child: Center(
child: SizedBox(
width: 33,
height: 33,
child: CircularProgressIndicator(
strokeWidth: 1.5,
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment