Added readme and cleaned up some ui pieces

This commit is contained in:
Chris Cochrun 2022-02-11 09:58:38 -06:00
parent 6e9e1eca0d
commit 42e772591c
9 changed files with 74 additions and 53 deletions

View file

@ -50,6 +50,11 @@ Item {
}
Controls.ToolButton {
text: "Background"
icon.name: "fileopen"
onClicked: {
print("Action button in buttons page clicked");
fileDialog.open()
}
}
}
}
@ -57,6 +62,8 @@ Item {
Controls.TextField {
implicitWidth: 300
Layout.leftMargin: 20
placeholderText: "Song Title..."
text: songTitle
}
Rectangle {
@ -72,6 +79,9 @@ Item {
Layout.bottomMargin: 30
Layout.leftMargin: 20
placeholderText: "Put lyrics here..."
persistentSelection: true
text: songLyrics
textFormat: TextEdit.MarkdownText
}
Rectangle {
@ -82,5 +92,4 @@ Item {
Layout.rightMargin: 20
}
}
}