ButtonWidget.widgetOutlined constructor

ButtonWidget.widgetOutlined({
  1. required String titulo,
  2. required Widget widget,
  3. required dynamic onChanged(),
  4. Color? colorTexto,
  5. double? maxWidth,
  6. double? maxheight,
  7. Color? borderColor,
})

Por default este botonpuede usarse para poner una imagen widget alado del texto, al pasarle un maxWidth será para hacerlo más ancho botones

Implementation

factory ButtonWidget.widgetOutlined({
  required String titulo,
  required Widget widget,
  required Function() onChanged,
  Color? colorTexto,
  double? maxWidth,
  double? maxheight,
  Color? borderColor,
}) = _ButtonWidgetOutlinedWidget;