whiteButtonStyle top-level constant

ButtonStyle const whiteButtonStyle

Implementation

const whiteButtonStyle =  ButtonStyle(
  foregroundColor: WidgetStatePropertyAll(Colors.black),
  backgroundColor: WidgetStatePropertyAll(Colors.white),
  padding: WidgetStatePropertyAll(
     EdgeInsets.symmetric(
      horizontal: 32,
      vertical: 16,
    ),
  ),
);