We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6b949 commit 6ded9aaCopy full SHA for 6ded9aa
frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/flowy_overlay.dart
@@ -338,7 +338,9 @@ class FlowyOverlayState extends State<FlowyOverlay> {
338
Widget build(BuildContext context) {
339
final overlays = _overlayList.map((item) {
340
var widget = item.widget;
341
- item.focusNode.requestFocus();
+
342
+ // requestFocus will cause the children weird focus behaviors.
343
+ // item.focusNode.requestFocus();
344
if (item.delegate?.asBarrier() ?? false) {
345
widget = Container(
346
color: style.barrierColor,
0 commit comments