It is possible to create tasks even leaving the title and description empty, with blank spaces. It could be fixed by adding **trim()** in the Task class: <pre><code>val isEmpty get() = title.trim().isEmpty() || description.trim().isEmpty() </code></pre> 
It is possible to create tasks even leaving the title and description empty, with blank spaces. It could be fixed by adding trim() in the Task class: