mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* chore(): initial commit to make AppFlowy Work Signed-off-by: not-shoyo <akheelsaajid@gmail.com> * fix: #2028, fix auto-entering edit mode Make text field request for focus when popover changes. Signed-off-by: not-shoyo <akheelsaajid@gmail.com> * Update section.dart * Update input_service.dart * Update input_service.dart * Update input_service.dart --------- Signed-off-by: not-shoyo <akheelsaajid@gmail.com>
This commit is contained in:
parent
f40d1a9a96
commit
5afdb5de35
@ -147,6 +147,8 @@ class _FieldNameTextFieldState extends State<_FieldNameTextField> {
|
|||||||
widget.popoverMutex.listenOnPopoverChanged(() {
|
widget.popoverMutex.listenOnPopoverChanged(() {
|
||||||
if (focusNode.hasFocus) {
|
if (focusNode.hasFocus) {
|
||||||
focusNode.unfocus();
|
focusNode.unfocus();
|
||||||
|
} else {
|
||||||
|
focusNode.requestFocus();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -58,7 +58,6 @@ class ViewSection extends StatelessWidget {
|
|||||||
.read<ViewSectionBloc>()
|
.read<ViewSectionBloc>()
|
||||||
.add(ViewSectionEvent.moveView(oldIndex, index));
|
.add(ViewSectionEvent.moveView(oldIndex, index));
|
||||||
},
|
},
|
||||||
ignorePrimaryScrollController: true,
|
|
||||||
children: children,
|
children: children,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user