buttonLabel method

  1. @protected
Widget buttonLabel(
  1. String label,
  2. bool loading,
  3. Color color
)

Implementation

@protected
Widget buttonLabel(String label, bool loading, Color color) {
  if (loading) {
    return SizedBox(
      width: 20,
      height: 20,
      child: CircularProgressIndicator(strokeWidth: 2, color: color),
    );
  }
  return Text(
    label,
    style: TextStyle(
      fontFamily: fontFamily,
      fontSize: 15,
      fontWeight: FontWeight.w600,
      color: color,
    ),
  );
}