nextButton method

TextButton nextButton()

Implementation

TextButton nextButton() {
  return customFlatButton(
    onPressed: () async {
      widget.submit();
    },
    label: widget.langNext.toUpperCase(),
    disabledColor: Color.fromRGBO(206, 208, 206, 1),
    color: Theme.of(context).primaryColor,
    textColor: Colors.white,
  );
}