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 71fa85e commit cfc6c9aCopy full SHA for cfc6c9a
lib/app/modules/home/views/add_task_bottom_sheet.dart
@@ -526,7 +526,9 @@ class AddTaskBottomSheet extends StatelessWidget {
526
void addTag(String tag) {
527
if (tag.isNotEmpty) {
528
String trimmedString = tag.trim();
529
- homeController.tags.add(trimmedString);
+ trimmedString.split(" ").forEach((v) {
530
+ homeController.tags.add(v);
531
+ });
532
homeController.tagcontroller.text = '';
533
}
534
0 commit comments