tappingAnywhere method

GestureDetector tappingAnywhere(
  1. BuildContext context,
  2. Widget content
)

Implementation

GestureDetector tappingAnywhere(BuildContext context, Widget content) {
  return GestureDetector(
    behavior: HitTestBehavior.translucent,
    onTap: () => keyboardDismiss(context),
    child: content,
  );
}