Skip to main content

Presentation Types

The type option within the MicroappOptions interface allows you to specify how the microapp will be presented to users. This section of the documentation provides an example of the available presentation types.

Push​

const microappOptions: MicroappOptions = {
name: 'Microapp Name';
type: 'push';
}

FullScreen​

const microappOptions: MicroappOptions = {
name: 'Microapp Name';
type: 'modal';
modalStyle: 'fullScreen';
}

PageSheet​

const microappOptions: MicroappOptions = {
name: 'Microapp Name';
type: 'modal';
modalStyle: 'pageSheet';
}