buildAddButton method

Widget buildAddButton({
  1. String? title,
})

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