Skip to content

Instantly share code, notes, and snippets.

@felangel
Created March 16, 2019 18:09
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/10b2d6c4f4f03b6a7b2a28b966c8845b to your computer and use it in GitHub Desktop.
Save felangel/10b2d6c4f4f03b6a7b2a28b966c8845b to your computer and use it in GitHub Desktop.
[flutter_todos] loading indicator
import 'package:flutter/material.dart';
class LoadingIndicator extends StatelessWidget {
LoadingIndicator({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Center(
child: CircularProgressIndicator(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment