79469338

Date: 2025-02-26 10:22:47
Score: 0.5
Natty:
Report link

Just wrap your scaffold with Gesture Detector as shown below to dismiss the keyboard:

return GestureDetector(
    onTap: () => FocusScope.of(context).unfocus(),
    child: Scaffold(),
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ritika Bansal