79670201

Date: 2025-06-18 07:43:27
Score: 1.5
Natty:
Report link

I found the cause and a workaround from Flutter github. The issue appears when showing a form with textfields in a dialog using the following widgets hierarchy:

showDialog -> Material -> Stack -> [form_with_text_fields, ... other widgets]

To solve the issue in Firefox and Safari embed the Stack in a SelectableArea:
showDialog -> Material -> SelectableArea -> Stack -> [form_with_text_fields, ... other widgets]

Reference: https://github.com/flutter/flutter/issues/157579

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: F. F.