Skip to content

Latest commit

 

History

History
22 lines (22 loc) · 500 Bytes

HOW-TO.md

File metadata and controls

22 lines (22 loc) · 500 Bytes
nav-title title description
stack-layout How-To
How-To
Examples for using stack-layout

Create StackLayout

var stackLayout = new layout.StackLayout();

Add child view to layout

var btn = new button.Button();
stackLayout.addChild(btn);

Remove child view from layout

stackLayout.removeChild(btn);

Change layout orientation to Horizontal

stackLayout.orientation = enums.Orientation.horizontal;