fix: disable flowyoverly focusNode

This commit is contained in:
appflowy 2022-08-22 18:23:06 +08:00
parent 5e6b9496fc
commit 6ded9aafd9

View File

@ -338,7 +338,9 @@ class FlowyOverlayState extends State<FlowyOverlay> {
Widget build(BuildContext context) {
final overlays = _overlayList.map((item) {
var widget = item.widget;
item.focusNode.requestFocus();
// requestFocus will cause the children weird focus behaviors.
// item.focusNode.requestFocus();
if (item.delegate?.asBarrier() ?? false) {
widget = Container(
color: style.barrierColor,