display the checklist items on the recycler view

This commit is contained in:
tibbi
2018-12-08 19:23:49 +01:00
parent c4ab67b2df
commit f34ce020bb
4 changed files with 99 additions and 3 deletions

View File

@ -1,3 +1,3 @@
package com.simplemobiletools.notes.pro.models
data class ChecklistItem(val title: String, val isDone: Boolean)
data class ChecklistItem(val id: Int, val title: String, val isDone: Boolean)