QML 7: Convert to use ColumnLayout
Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
parent
8681e44c2a
commit
b60c4f33a1
|
@ -1,5 +1,6 @@
|
|||
import org.kde.falkon 1.0 as Falkon
|
||||
import QtQuick.Controls 2.3
|
||||
import QtQuick.Layouts 1.0
|
||||
import QtQuick 2.3
|
||||
|
||||
Falkon.PluginInterface {
|
||||
|
@ -25,18 +26,18 @@ Falkon.PluginInterface {
|
|||
shortcut: 'Ctrl+Shift+Alt+S'
|
||||
|
||||
Pane {
|
||||
Image {
|
||||
source: 'qrc:/icons/other/startpage.svg'
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
}
|
||||
ColumnLayout {
|
||||
anchors.fill: parent
|
||||
Image {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
source: 'qrc:/icons/other/startpage.svg'
|
||||
}
|
||||
|
||||
Button {
|
||||
text: i18n('Hello Qml Plugin')
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
Button {
|
||||
Layout.fillWidth: true
|
||||
Layout.alignment: Qt.AlignBottom
|
||||
text: i18n('Hello Qml Plugin')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user