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

15 lines
562 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<Page loaded="pageLoaded">
<Repeater items="{{ items }}">
<Repeater.itemsLayout>
<FlexboxLayout flexDirection="column" flexWrap="wrap" justifyContent="center" alignItems="center" alignContent="stretch" />
</Repeater.itemsLayout>
<Repeater.itemTemplate>
<FlexboxLayout flexDirection="row">
<Label text="{{ number }}" backgroundColor="lightgreen" />
<Label text="{{ number }}" backgroundColor="lightblue" />
</FlexboxLayout>
</Repeater.itemTemplate>
</Repeater>
</Page>