mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
18 lines
337 B
QML
18 lines
337 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import "MaterialPalette.qml" as MaterialPalette
|
|
|
|
Menu {
|
|
id: menu
|
|
background: Rectangle {
|
|
color: MaterialPalette.surface
|
|
border.color: MaterialPalette.outline
|
|
radius: 12
|
|
}
|
|
contentItem: Column {
|
|
spacing: 6
|
|
anchors.margins: 8
|
|
}
|
|
}
|