Final Results
ToDoRepository
should look like:
package com.commonsware.todo
class ToDoRepository {
var items = listOf(
ToDoModel(
description = "Buy a copy of _Exploring Android_",
isCompleted = true,
notes = "See https://wares.commonsware.com"
),
ToDoModel(
description = "Complete all of the tutorials"
),
ToDoModel(
description = "Write an app for somebody in my community",
notes = "Talk to some people at non-profit organizations to see what they need!"
)
)
}
Prev Table of Contents Next
This book is licensed under the Creative Commons Attribution-ShareAlike 4.0 International license.