Implement basic UI with QML (MailListPage) and batching DbChangeProcessor (Step 3-4 of transition plan)
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import QtQuick 2.15
|
||||
|
||||
ListModel {
|
||||
ListElement {
|
||||
folderName: "Inbox"
|
||||
unreadCount: 5
|
||||
}
|
||||
ListElement {
|
||||
folderName: "Sent"
|
||||
unreadCount: 0
|
||||
}
|
||||
ListElement {
|
||||
folderName: "Drafts"
|
||||
unreadCount: 0
|
||||
}
|
||||
ListElement {
|
||||
folderName: "Trash"
|
||||
unreadCount: 0
|
||||
}
|
||||
ListElement {
|
||||
folderName: "Spam"
|
||||
unreadCount: 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user