createHintButton method

Widget createHintButton(
  1. BuildContext context,
  2. PadlockHint hint
)

Creates the hint button.

Implementation

Widget createHintButton(BuildContext context, PadlockHint hint) => TextButton(
      onPressed: () => showHintDialog(hint),
      child: Text(hint.title.toUpperCase()),
    );