Sorry that Im asking something about stablexui on here but I don’t know where else to ask:
I want to put a border on something in xml it looked like this:
but i cannot seem to put a border on it I have tried:
var scroll = UIBuilder.create(Scroll, {
w: Lib.current.stage.stageWidth,
h:Lib.current.stage.stageHeight,
children : [
UIBuilder.create(Text, {
top: 0,
w: Lib.current.stage.stageWidth,
h: 30,
text: ‘Select Names:’,
label: {
selectable: false
},
format: {
size: Lib.current.stage.stageHeight/20
},
skin: {
paint: {
border: 1
}
}
})
]
});
or with paint with a capital P or without the skin part or without the paint part nothing works the format and label ect. work tho?