Hello,
how to center a child in a panel ?
var panel:Panel = new Panel(); var button:Button = new Button(); button.label = "child"; panel.addChild( button ); this.addChild( panel );
Thanks.
pol2095
H/VLayout verticalAlign = VerticalALigh.MIDDLE & H/VLayout horizontalAlign = VerticalALigh.CENTER
H/VLayout verticalAlign = VerticalALigh.MIDDLE
H/VLayout horizontalAlign = VerticalALigh.CENTER
OR
AnchorLayout with AnchorLayoutData using verticalCenter=0, horizontalCenter=0.
AnchorLayout
AnchorLayoutData
verticalCenter=0
horizontalCenter=0
https://feathersui.com/api-reference/feathers/layout/AnchorLayoutData.html
Thanks