mirror of https://github.com/cutefishos/calamares
[calamares] Add a sample QML-sidebar
- The built-in one is loaded if no branding file is found. - This sidebar is just the most basic of QML examples.main
parent
cc3b0b2859
commit
cec406e402
@ -0,0 +1,12 @@
|
||||
import QtQuick 2.3
|
||||
|
||||
Rectangle {
|
||||
width: 200
|
||||
height: 100
|
||||
color: "red"
|
||||
|
||||
Text {
|
||||
anchors.centerIn: parent
|
||||
text: "Hello, World!"
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<!DOCTYPE RCC><RCC version="1.0">
|
||||
<qresource>
|
||||
<file alias="calamares-sidebar.qml">calamares-sidebar.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
Loading…
Reference in New Issue