presentation

Custom navigation transitions, animations and styles

Fields

typeenum

default, fullscreen, pop-in

styleenum

default, fade, flip

Popover transition only fields

snapPointsarray

Only available on popover transition type ['40%', '65%']

Basic Example usage of default presentation

{
  "type": "default",
  "style": "default"
}

Example of fullscreen presentation

{
  "type": "fullscreen",
  "style": "default"
}

Example of fullscreen and flip presentation

{
  "type": "fullscreen",
  "style": "flip"
}

Example of pop-in and flip presentation

{
  "type": "pop-in",
  "style": "default",
	"snapPoints": ['.4', '.6']
}

Example of drawer and slide-from-left presentation

{
  "type": "drawer",
  "style": "slide-from-left",
	"snapPoints": ['.9']
}

Example of drawer and slide-from-right presentation

{
  "type": "drawer",
  "style": "slide-from-right",
	"snapPoints": ['.7']
}