1
2
3
4
5
6
7
8
9
10
11
12
13 | StyledItem {
styleName: "FocusShape"
// set a width/height as FocusShape fills to its parent
width: units.gu(40)
height: units.gu(20)
// in case you want to handle focus frame visibility through TAB/BackTAB
activeFocusOnTab: true
// or drive visibility of the style using StyleHints
// note: you can have property bindings here too
StyleHints {
visible: true
}
}
|