37 lines
864 B
QML
37 lines
864 B
QML
|
|
// Auto-generated by `bin/console make:bridge:window Todo`.
|
||
|
|
// Edit freely; re-running the maker won't overwrite this file.
|
||
|
|
|
||
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
import QtQuick.Layouts
|
||
|
|
import QtQuick.Window
|
||
|
|
import PhpQml.Bridge
|
||
|
|
|
||
|
|
ApplicationWindow {
|
||
|
|
id: todoWindow
|
||
|
|
width: 720
|
||
|
|
height: 520
|
||
|
|
visible: true
|
||
|
|
title: "Todo"
|
||
|
|
|
||
|
|
AppShell {
|
||
|
|
anchors.fill: parent
|
||
|
|
|
||
|
|
// Replace this with the window's content. The AppShell parent
|
||
|
|
// takes care of Reconnecting / Offline UI overlays.
|
||
|
|
ColumnLayout {
|
||
|
|
anchors.fill: parent
|
||
|
|
anchors.margins: 16
|
||
|
|
|
||
|
|
Label {
|
||
|
|
text: "Todo"
|
||
|
|
font.pixelSize: 18
|
||
|
|
font.bold: true
|
||
|
|
}
|
||
|
|
|
||
|
|
// TODO: window content here.
|
||
|
|
Item { Layout.fillWidth: true; Layout.fillHeight: true }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|