VirtualKeypadKeyBuilder typedef Theming
VirtualKeypadKeyBuilder =
Widget? Function(BuildContext context, VirtualKeyContext info)
Draws the content of a single key.
Return null to let the package draw that key normally, which is what makes
it practical to override one key and leave the rest alone.
This controls the key's content only. Its background, size, tap handling, repeat, D-pad focus and accessibility stay with the package, so a builder cannot accidentally break the keyboard's behaviour.
Implementation
typedef VirtualKeypadKeyBuilder = Widget? Function(
BuildContext context, VirtualKeyContext info);