blueButtonWithProgressThatChangesOnCompletion static method

Widget blueButtonWithProgressThatChangesOnCompletion(
  1. String textString,
  2. Function onPressed,
  3. Widget widgetAfterCompletion
)

Implementation

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