wallpapers WIP
This commit is contained in:
parent
3a67bc5204
commit
450ff7a503
3 changed files with 43 additions and 0 deletions
|
|
@ -112,6 +112,12 @@ StyledPanelWindow {
|
|||
title: "Styling"
|
||||
view: StylingView {}
|
||||
}
|
||||
|
||||
ConfigurationView {
|
||||
icon: Styling.lucide.icons.swatchBook
|
||||
title: "Wallpapers"
|
||||
view: Wallpaper {}
|
||||
}
|
||||
}
|
||||
|
||||
component ConfigurationView: QtObject {
|
||||
|
|
|
|||
13
modules/configuration/Wallpaper.qml
Normal file
13
modules/configuration/Wallpaper.qml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import qs.services
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
|
||||
ColumnLayout {
|
||||
Repeater {
|
||||
model: WallpaperService.files
|
||||
delegate: Text {
|
||||
required property string dataModel
|
||||
text: dataModel
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue