mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
27 lines
365 B
QML
Executable File
27 lines
365 B
QML
Executable File
import QtQuick 2.4
|
|
|
|
Item {
|
|
id: item1
|
|
width: 400
|
|
height: 400
|
|
|
|
AddButton {
|
|
id: addButton1
|
|
x: 232
|
|
y: 294
|
|
width: 100
|
|
height: 50
|
|
anchors.rightMargin: 0
|
|
anchors.bottom: parent.bottom
|
|
anchors.right: parent.right
|
|
}
|
|
|
|
FolderList {
|
|
id: folderList1
|
|
width: 107
|
|
anchors.bottom: parent.bottom
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
}
|
|
}
|