Now we use a shell control as container for our app and use it as our new root element. The shell takes care of visual adaptation of the application to the device’s screen size by introducing a so-called letterbox on desktop screens.
The app is now run in a shell that limits the app width
You can access the live preview by clicking on this link: 🔗 Live Preview of Step 12.
To download the solution for this step as a zip file, just choose the link here: 📥 Download Solution for Step 12.
In your App view, we put the App
control inside a sap/m/Shell
control.
<mvc:View
controllerName="ui5.walkthrough.controller.App"
xmlns="sap.m"
xmlns:mvc="sap.ui.core.mvc"
displayBlock="true">
<Shell>
<App>
<pages>
<Page title="{i18n>homePageTitle}">
<content>
<Panel
headerText="{i18n>helloPanelTitle}">
<content>
<Button
text="{i18n>showHelloButtonText}"
press=".onShowHello"/>
<Input
value="{/recipient/name}"
description="Hello {/recipient/name}"
valueLiveUpdate="true"
width="60%"/>
</content>
</Panel>
</content>
</Page>
</pages>
</App>
</Shell>
</mvc:View>
The Shell
control is now the outermost control of our app and automatically displays a so-called letterbox, if the screen size is larger than a certain width.
:information_source: Note: We don’t add the
Shell
control to the declarative UI definition in the XML view if apps run in an external shell, like the SAP Fiori launchpad that already has a shell around the component UI. There are further options to customize the shell, like setting a custom background image or color and setting a custom logo. Check the related API reference for more details.
Next: Step 13: Margins and Paddings
Previous: Step 11: Pages and Panels
Related Information