nulls property

ButtonStyle nulls
final

Implementation

static final ButtonStyle nulls = ButtonStyle(
  backgroundColor: const MaterialStatePropertyAll<Color>(Colors.white),
  foregroundColor: const MaterialStatePropertyAll<Color>(Colors.black),
  overlayColor: const MaterialStatePropertyAll<Color>(Colors.white),
  padding:
      const MaterialStatePropertyAll<EdgeInsetsGeometry>(EdgeInsets.all(10)),
  side: const MaterialStatePropertyAll<BorderSide>(
      BorderSide(color: Colors.white)),
  shape: MaterialStateProperty.all(
    RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(30),
    ),
  ),
);