Added note title to widget (#268)

This commit is contained in:
Agnieszka C
2021-10-01 20:51:20 +02:00
parent d148443165
commit efbfaa8717
40 changed files with 122 additions and 7 deletions

View File

@ -11,4 +11,5 @@ data class Widget(
@ColumnInfo(name = "widget_id") var widgetId: Int,
@ColumnInfo(name = "note_id") var noteId: Long,
@ColumnInfo(name = "widget_bg_color") var widgetBgColor: Int,
@ColumnInfo(name = "widget_text_color") var widgetTextColor: Int)
@ColumnInfo(name = "widget_text_color") var widgetTextColor: Int,
@ColumnInfo(name = "widget_show_title") var widgetShowTitle: Boolean)