Droidstar-DMR/qml/components/AppCard.qml

20 lines
344 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Material
Pane {
id: card
// A simple reusable “card” surface for the new UI.
Material.elevation: 1
padding: 12
background: Rectangle {
color: Material.background
radius: 12
border.color: "#2E2E2E"
border.width: 1
}
}