<mvc:View controllerName="appUnderTest.view.Main"
	xmlns="sap.m"
	xmlns:mvc="sap.ui.core.mvc"
	xmlns:L="sap.ui.layout">
	<Shell>
		<App id="app">
			<Page id="intro">
				<headerContent>
					<Button id="navToOverview" press="onNavToOverview" text="Navigate to Overview"/>
				</headerContent>
			</Page>
			<Page id="overview">
				<Button id="navToPage1" press="onNavToPage1" text="Navigate to Page 1"/>
				<Button id="navToPage2" press="onNavToPage2" text="Navigate to Page 2"/>
			</Page>
			<Page id="page1">
				<L:VerticalLayout>
					<Text id="text1" text="This is Page 1"/>
					<Text id="label1" text="More Text"/>
					<Text id="label2" text="Even More Text"/>
				</L:VerticalLayout>
			</Page>
			<Page id="page2">
				<Text id="text2" text="This is Page 2"/>
			</Page>
		</App>
	</Shell>
</mvc:View>
