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 a983ccb commit 389877fCopy full SHA for 389877f
flutter_app/lib/dialog.dart
@@ -48,7 +48,9 @@ class _DialogState extends State<_Dialog> {
48
done: _done,
49
deleted: false,
50
// Pass the attachment note text if provided
51
- attachment: _attachmentNote.text.isNotEmpty ? {"note": _attachmentNote.text} : null,
+ attachment: _attachmentNote.text.isNotEmpty
52
+ ? {"note": _attachmentNote.text}
53
+ : null,
54
);
55
Navigator.of(context).pop(task);
56
},
0 commit comments