Skip to content

UniDeskRadioButton Type

Radio button control based on QtQuick RadioButton. Custom circular indicator style with selected state and theme-aware colors.

ItemDescription
Control TypeVisual Control
Source FileUniDesk/Controls/UniDeskRadioButton.qml
InheritsT.RadioButton (QtQuick Templates)
QML Importimport UniDesk.Controls 1.0

Custom Styling

  • Indicator: Circular border + inner theme-colored dot when selected
  • Hover/press state has color transition
  • Text uses UniDeskTextStyle.little font
  • Content rendered using UniDeskText control

Properties

Inherits all properties from QtQuick RadioButton. No additional custom properties.

Examples

qml
import UniDesk.Controls 1.0

Column {
    UniDeskRadioButton {
        text: "Option A"
        checked: true
    }
    UniDeskRadioButton {
        text: "Option B"
    }
}

Released under the CC BY-SA 4.0 open documentation license.