status-desktop/storybook/pages/CopyButtonPage.qml
2024-02-28 17:23:46 +01:00

22 lines
349 B
QML

import QtQuick 2.15
import QtQuick.Layouts 1.15
import shared.controls 1.0
Item {
RowLayout {
anchors.centerIn: parent
CopyButton {
textToCopy: "Some text"
}
CopyButtonWithCircle {
textToCopy: "Some text"
successCircleVisible: true
}
}
}
// category: Controls