light method

ButtonStyle light()

Implementation

ButtonStyle light() {
  return copyWith(
    backgroundColor: WidgetStateProperty.all(
      Color(0xFFf8f9fa),
    ), // Bootstrap light gray
    foregroundColor: WidgetStateProperty.all(
      Colors.black,
    ), // Bootstrap dark text
    shape: WidgetStateProperty.all(
      RoundedRectangleBorder(borderRadius: BorderRadius.circular(4.0)),
    ),
  );
}