buildAddButton method
Implementation
Widget buildAddButton({String? title}) {
return Padding(
padding: const EdgeInsets.only(bottom: 16),
child: IntrinsicWidth(
stepWidth: 100,
child: XfdnFlatButton(
text: title ?? 'Novo',
textColor: Colors.black,
onPressed: widget.onAdd,
),
),
);
}