kButtonTitle function

Text kButtonTitle(
  1. String title
)

Implementation

Text kButtonTitle(String title) {
  return Text(
    title,
    style: const TextStyle(
        fontSize: 18, color: Colors.white, fontWeight: FontWeight.bold),
  );
}