import QtQuick import QtQuick.Layouts import QtQuick.Window import QtQuick.Controls import QtQuick.Controls.Basic import FluentUI Window { width: 640 height: 480 visible: true title: qsTr("Hello World") FluArea{ Layout.fillWidth: true height: 68 Layout.topMargin: 20 paddings: 10 FluFilledButton{ disabled:filled_button_switch.checked text:"Filled Button" onClicked: {} anchors{ verticalCenter: parent.verticalCenter left: parent.left } } } }