diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-05 21:31:27 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-05 21:31:27 +0800 |
commit | a0096545d2bffc622167d3164c328af8308cc93b (patch) | |
tree | 9ef83aee33fbbd3fd57c896b6dec1f17eba0dff2 /ApplicationWindow.qml | |
parent | 77a4d6f3ca3a506f24a64262f09456058247b1bb (diff) |
Simplify & make it usable
Diffstat (limited to 'ApplicationWindow.qml')
-rw-r--r-- | ApplicationWindow.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ApplicationWindow.qml b/ApplicationWindow.qml new file mode 100644 index 0000000..72df372 --- /dev/null +++ b/ApplicationWindow.qml @@ -0,0 +1,16 @@ +import QtQuick 2.15 +import QtQuick.Templates 2.15 +import Bootstrap 5.3 + +ApplicationWindow { + id: window + color: Bootstrap.bodyBg + overlay { + modal: Rectangle { + color: Color.transparent(window.palette.shadow, .5) + } + modeless: Rectangle { + color: Color.transparent(window.palette.shadow, .15) + } + } +} |