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.
2 parents fcefe78 + cb64d18 commit 6e13f5cCopy full SHA for 6e13f5c
lib/widgets/cards.dart
@@ -97,6 +97,12 @@ class SidebarRequestCard extends StatelessWidget {
97
onTapOutsideNameEditor?.call();
98
//FocusScope.of(context).unfocus();
99
},
100
+ onFieldSubmitted: (value) {
101
+ // As new name is being contantly updated by
102
+ // [onChangedNameEditor], stop editing by
103
+ // calling this fn
104
+ onTapOutsideNameEditor?.call();
105
+ },
106
onChanged: onChangedNameEditor,
107
decoration: const InputDecoration(
108
isCollapsed: true,
0 commit comments