blueButtonWithProgressThatChangesOnCompletion static method
Implementation
static Widget blueButtonWithProgressThatChangesOnCompletion(
String textString, Function onPressed, Widget widgetAfterCompletion) {
return RaisedButtonWithProgress(
textString,
onPressed,
Colors.blue,
widgetAfterCompletion: widgetAfterCompletion,
);
}