AppLayout QML Type

(BETA) Applies values used for consistent app layouts. More...

Import Statement: import ArcGIS.AppFramework.Platform 1.0

Properties

Detailed Description

The AppLayout component contains tooling used to keep the appearance of apps consistent across mobile devices. This is done to handle verying heights of the status bar across devices, especially devices with a notch such as later iPhones. It should be used when the app also makes use of the StatusBar component, to ensure that the status bar is consistently visible.

To use AppLayout, set your App object as the contents of the delegate property. This code sample demonstrates what this looks like:

AppLayout {
    width: 400
    height: 640
    delegate: App {
        id: app
        ...
    }
}

This component is only supported on Android and iOS. It causes no changes in app behavior on other operating systems.

Property Documentation

[read-only] delegate : object

Set the app that the AppLayout will apply to as the delegate.


Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.