buttonLabel method
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,
),
);
}