Early Progress of SettingsWindow
This commit is contained in:
parent
5543b58c3c
commit
dc621647d7
14 changed files with 499 additions and 4 deletions
19
Modules/Settings/Tabs/Bar.qml
Normal file
19
Modules/Settings/Tabs/Bar.qml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import qs.Services
|
||||
import qs.Widgets
|
||||
|
||||
Item {
|
||||
// Optional scaling prop to match other tabs
|
||||
property real scaling: 1
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
anchors.fill: parent
|
||||
spacing: Style.marginMedium * scaling
|
||||
NText { text: "Bar"; font.weight: Style.fontWeightBold; color: Colors.accentSecondary }
|
||||
NText { text: "Coming soon"; color: Colors.textSecondary }
|
||||
Item { Layout.fillHeight: true }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue