kButtonStyleDrop function

ButtonStyle kButtonStyleDrop()

Implementation

ButtonStyle kButtonStyleDrop() {
  return ElevatedButton.styleFrom(
    backgroundColor: hOrange,
    shape: const RoundedRectangleBorder(
        borderRadius: BorderRadius.all(Radius.circular(15))),
  );
}