How to customise Shell container in SAPUI5

sap-fiori, sapui5

Solution

When working with a manifest.json file and the UI5-framework instantiates a shell control, do the following (appWidthLimited="false" cannot be used as you don't have a xml containing a shell 'tag').

manifest.json

...
"sap.ui5": {
    "config": {
        "fullWidth": true
    },
    ...
...

Problem

I've a shell container and on big screens i want to utilize full with of screen. i want to cover full area. how i can customize it.

Original source

Related problems