kButtonStyle function

ButtonStyle kButtonStyle()

Implementation

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