Skip to content

Instantly share code, notes, and snippets.

@IhwanID
Created April 26, 2020 14:45
Show Gist options
  • Save IhwanID/826fc35e34e5334e4419f49a4189101d to your computer and use it in GitHub Desktop.
Save IhwanID/826fc35e34e5334e4419f49a4189101d to your computer and use it in GitHub Desktop.
Loading widget with message in flutter
import 'package:flutter/material.dart';
class Loading extends StatelessWidget {
final String msg;
Loading({this.msg});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
CircularProgressIndicator(),
SizedBox(
height: 20,
),
Text(msg)
],
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment