Interface ApplicationShellLayoutMigration

interface ApplicationShellLayoutMigration {
    layoutVersion: ApplicationShellLayoutVersion;
    onWillInflateLayout?(context): MaybePromise<void>;
    onWillInflateWidget?(desc, context): MaybePromise<undefined | WidgetDescription>;
}

Properties

A target migration version.

Methods