dialogContent method
- dynamic context
Builds the content of the dialog
context
is the BuildContext in which the widget is built
Implementation
dialogContent(context) {
return Wrap(children: <Widget>[
Center(
child: Container(
width: 80,
height: 80,
padding: EdgeInsets.all(5),
child: CircleAvatar(
backgroundColor: Colors.white,
radius: 20,
child: CircularProgressIndicator(
valueColor:
AlwaysStoppedAnimation<Color>(Colors.black)))))
]);
}