<Page
    navigatingTo="onNavigatingTo"  
    xmlns="http://schemas.nativescript.org/tns.xsd">

    <ActionBar>
        <Label text="Home"></Label>
    </ActionBar>

    <ListView items="{{ items }}" itemTap="onItemTap">
        <ListView.itemTemplate>
            <StackLayout orientation="horizontal">
                <Label text="{{ name }}" textWrap="true"></Label>
            </StackLayout>
        </ListView.itemTemplate>
    </ListView>
</Page>