styleButtonFilled method

ButtonStyle styleButtonFilled(
  1. double anchoFijoBoton
)

Implementation

ButtonStyle styleButtonFilled(double anchoFijoBoton) => ButtonStyle(
      backgroundColor: WidgetStatePropertyAll(backgroundButton),
      padding: padding != null ? WidgetStatePropertyAll(padding) : null,
      minimumSize: WidgetStatePropertyAll(
          Size(anchoBoton ?? anchoFijoBoton, maxHeight)),
      shape: WidgetStatePropertyAll(
          RoundedRectangleBorder(borderRadius: BorderRadius.circular(10))),
    );