Skip to content

Instantly share code, notes, and snippets.

@VB10
Last active November 7, 2022 15:30
Show Gist options
  • Save VB10/3be204b0284921fe7da0469260dff653 to your computer and use it in GitHub Desktop.
Save VB10/3be204b0284921fe7da0469260dff653 to your computer and use it in GitHub Desktop.
Close Keyboard
class CloseKeyboardView extends StatelessWidget {
const CloseKeyboardView({super.key, required this.child});
final Widget child;
@override
Widget build(BuildContext context) {
return InkWell(
onTap: () => FocusScope.of(context).unfocus(),
child: child,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment