Files
NativeScript/apps/ui/app/flexbox/flexbox-demo-page.xml
Nathan Walker 1e6fccf272 chore: cleanup
2020-07-23 14:03:37 -07:00

20 lines
664 B
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<FlexboxLayout id="body">
<FlexboxLayout class="flex-item header">
<Label text="Header" />
</FlexboxLayout>
<FlexboxLayout class="flex-item sidebar">
<Label text="Sidebar" />
</FlexboxLayout>
<FlexboxLayout class="flex-item main">
<Label text="Main" />
</FlexboxLayout>
<FlexboxLayout class="flex-item sidebar">
<Label text="Sidebar" />
</FlexboxLayout>
<FlexboxLayout class="flex-item footer">
<Label text="Footer" />
</FlexboxLayout>
</FlexboxLayout>
</Page>