123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122 |
- // tslint:disable jsdoc-format
- import { ImageRequireSource, Insets } from 'react-native';
-
- type Color = string;
- type FontFamily = string;
- type FontWeight =
- | 'regular'
- | 'bold'
- | 'thin'
- | 'ultraLight'
- | 'light'
- | 'medium'
- | 'semibold'
- | 'heavy'
- | 'black';
- type LayoutOrientation = 'portrait' | 'landscape';
- type AndroidDensityNumber = number;
- type SystemItemIcon =
- | 'done'
- | 'cancel'
- | 'edit'
- | 'save'
- | 'add'
- | 'flexibleSpace'
- | 'fixedSpace'
- | 'compose'
- | 'reply'
- | 'action'
- | 'organize'
- | 'bookmarks'
- | 'search'
- | 'refresh'
- | 'stop'
- | 'camera'
- | 'trash'
- | 'play'
- | 'pause'
- | 'rewind'
- | 'fastForward'
- | 'undo'
- | 'redo';
- type Interpolation = 'linear' | 'accelerateDecelerate' | 'decelerate' | 'accelerate' | 'decelerateAccelerate';
-
- export interface OptionsSplitView {
- /**
- * Master view display mode
- * @default 'auto'
- */
- displayMode?: 'auto' | 'visible' | 'hidden' | 'overlay';
- /**
- * Master view side. Leading is left. Trailing is right.
- * @default 'leading'
- */
- primaryEdge?: 'leading' | 'trailing';
- /**
- * Set the minimum width of master view
- */
- minWidth?: number;
- /**
- * Set the maximum width of master view
- */
- maxWidth?: number;
- }
-
- export interface OptionsStatusBar {
- /**
- * Set the status bar visibility
- * @default true
- */
- visible?: boolean;
- /**
- * Set the text color of the status bar
- * @default 'light'
- */
- style?: 'light' | 'dark';
- /**
- * Set the background color of the status bar
- * #### (Android specific)
- */
- backgroundColor?: Color;
- /**
- * Draw screen behind the status bar
- * #### (Android specific)
- */
- drawBehind?: boolean;
- }
-
- export interface OptionsLayout {
- fitSystemWindows?: boolean;
- /**
- * Set the screen background color
- */
- backgroundColor?: Color;
- /**
- * Set background color only for components, helps reduce overdraw if background color is set in default options.
- * #### (Android specific)
- */
- componentBackgroundColor?: Color;
- /**
- * Set the allowed orientations
- */
- orientation?: LayoutOrientation[];
- /**
- * Layout top margin
- * #### (Android specific)
- */
- topMargin?: number;
-
- /**
- * Set language direction.
- * only works with DefaultOptions
- */
- direction?: 'rtl' | 'ltr';
- }
-
- export enum OptionsModalPresentationStyle {
- formSheet = 'formSheet',
- pageSheet = 'pageSheet',
- overFullScreen = 'overFullScreen',
- overCurrentContext = 'overCurrentContext',
- currentContext = 'currentContext',
- popover = 'popover',
- fullScreen = 'fullScreen',
- none = 'none'
- }
-
- export enum OptionsModalTransitionStyle {
- coverVertical = 'coverVertical',
- crossDissolve = 'crossDissolve',
- flipHorizontal = 'flipHorizontal',
- partialCurl = 'partialCurl'
- }
-
- export interface OptionsTopBarLargeTitle {
- /**
- * Enable large titles
- */
- visible?: boolean;
- /**
- * Set the font size of large title's text
- */
- fontSize?: number;
- /**
- * Set the color of large title's text
- */
- color?: Color;
- /**
- * Set the font family of large title's text
- */
- fontFamily?: FontFamily;
- /**
- * Set the font weight, ignore fontFamily and use the iOS system fonts instead
- * #### (iOS specific)
- */
- fontWeight?: FontWeight;
- }
-
- export interface OptionsTopBarTitle {
- /**
- * Text to display in the title area
- */
- text?: string;
- /**
- * Font size
- */
- fontSize?: number;
- /**
- * Text color
- */
- color?: Color;
- /**
- * Title font family
- *
- * Make sure that the font is available
- */
- fontFamily?: FontFamily;
- /**
- * Set the font weight, ignore fontFamily and use the iOS system fonts instead
- * #### (iOS specific)
- */
- fontWeight?: FontWeight;
- /**
- * Custom component as the title view
- */
- component?: {
- /**
- * Component reference id, Auto generated if empty
- */
- id?: string;
- /**
- * Name of your component
- */
- name: string;
- /**
- * Set component alignment
- */
- alignment?: 'center' | 'fill';
- /**
- * Properties to pass down to the component
- */
- passProps?: object;
- };
- /**
- * Top Bar title height in densitiy pixels
- * #### (Android specific)
- */
- height?: number;
- /**
- * Title alignment
- * #### (Android specific)
- */
- alignment?: 'center' | 'fill';
- }
-
- export interface OptionsTopBarSubtitle {
- /**
- * Set subtitle text
- */
- text?: string;
- /**
- * Set subtitle font size
- */
- fontSize?: number;
- /**
- * Set subtitle color
- */
- color?: Color;
- /**
- * Set subtitle font family
- */
- fontFamily?: FontFamily;
- /**
- * Set the font weight, ignore fontFamily and use the iOS system fonts instead
- * #### (iOS specific)
- */
- fontWeight?: FontWeight;
- /**
- * Set subtitle alignment
- */
- alignment?: 'center';
- }
-
- export interface OptionsTopBarBackButton {
- /**
- * Image to show as the back button
- */
- icon?: ImageRequireSource;
- /**
- * Weither the back button is visible or not
- * @default true
- */
- visible?: boolean;
- /**
- * Set the back button title
- * #### (iOS specific)
- */
- title?: string;
- /**
- * Show title or just the icon
- * #### (iOS specific)
- */
- showTitle?: boolean;
- /**
- * Back button icon and text color
- */
- color?: Color;
- /**
- * Set subtitle font size
- */
- fontSize?: number;
- /**
- * Set subtitle font family
- */
- fontFamily?: FontFamily;
- /**
- * Set testID for reference in E2E tests
- */
- testID?: string;
- }
-
- export interface OptionsTopBarBackground {
- /**
- * Background color of the top bar
- */
- color?: Color;
- /**
- * Clip the top bar background to bounds if set to true.
- * #### (iOS specific)
- */
- clipToBounds?: boolean;
- /**
- * Set a custom component for the Top Bar background
- */
- component?: {
- name?: string;
- /**
- * Properties to pass down to the component
- */
- passProps?: object;
- };
- /**
- * Allows the NavBar to be translucent (blurred)
- * #### (iOS specific)
- */
- translucent?: boolean;
- /**
- * Enable background blur
- * #### (iOS specific)
- */
- blur?: boolean;
- }
-
- export interface OptionsTopBarButton {
- /**
- * Button id for reference press event
- */
- id: string;
- /**
- * Set the button icon
- */
- icon?: ImageRequireSource;
- /**
- * Set the button icon insets
- */
- iconInsets?: IconInsets;
- /**
- * Set the button as a custom component
- */
- component?: {
- /**
- * Component reference id, Auto generated if empty
- */
- id?: string;
- /**
- * Name of your component
- */
- name: string;
- /**
- * Properties to pass down to the component
- */
- passProps?: object;
- /**
- * (Android only) component width
- */
- width?: number;
- /**
- * (Android only) component height
- */
- height?: number;
- };
- /**
- * (iOS only) Set the button as an iOS system icon
- */
- systemItem?: SystemItemIcon;
- /**
- * Set the button text
- */
- text?: string;
- /**
- * Overrides the text that's read by the screen reader when the user interacts with the element
- */
- accessibilityLabel?: string;
- /**
- * Set the button font family
- */
- fontFamily?: string;
- /**
- * Set the font weight, ignore fontFamily and use the iOS system fonts instead
- * #### (iOS specific)
- */
- fontWeight?: FontWeight;
- /**
- * Set the button enabled or disabled
- * @default true
- */
- enabled?: boolean;
- /**
- * Disable icon tinting
- */
- disableIconTint?: boolean;
- /**
- * Set text color
- */
- color?: Color;
- /**
- * Set text color in disabled state
- */
- disabledColor?: Color;
- /**
- * Set testID for reference in E2E tests
- */
- testID?: string;
- /**
- * (Android only) Set showAsAction value
- * @see {@link https://developer.android.com/guide/topics/resources/menu-resource|Android developer guide: Menu resource}
- */
- showAsAction?: 'ifRoom' | 'withText' | 'always' | 'never';
- }
-
- export interface OptionsTopBar {
- /**
- * Show or hide the top bar
- */
- visible?: boolean;
- /**
- * Controls whether TopBar visibility changes should be animated
- */
- animate?: boolean;
- /**
- * Top bar will hide and show based on users scroll direction
- */
- hideOnScroll?: boolean;
- /**
- * Change button colors in the top bar
- */
-
- leftButtonColor?: Color;
- rightButtonColor?: Color;
- leftButtonDisabledColor?: Color;
- rightButtonDisabledColor?: Color;
- /**
- * Draw behind the navbar
- */
- drawBehind?: boolean;
- /**
- * Can be used to reference the top bar in E2E tests
- */
- testID?: string;
- /**
- * Title configuration
- */
- title?: OptionsTopBarTitle;
- /**
- * Subtitle configuration
- */
- subtitle?: OptionsTopBarSubtitle;
- /**
- * Back button configuration
- */
- backButton?: OptionsTopBarBackButton;
- /**
- * List of buttons to the left
- */
- leftButtons?: OptionsTopBarButton[];
- /**
- * List of buttons to the right
- */
- rightButtons?: OptionsTopBarButton[];
- /**
- * Background configuration
- */
- background?: OptionsTopBarBackground;
- /**
- * Control the NavBar blur style
- * #### (iOS specific)
- * @requires translucent: true
- * @default 'default'
- */
- barStyle?: 'default' | 'black';
- /**
- * Disable the border on bottom of the navbar
- * #### (iOS specific)
- * @default false
- */
- noBorder?: boolean;
- /**
- * Show a UISearchBar in the Top Bar
- * #### (iOS 11+ specific)
- */
- searchBar?: boolean;
- /**
- * Hides the UISearchBar when scrolling
- * #### (iOS 11+ specific)
- */
- searchBarHiddenWhenScrolling?: boolean;
- /**
- * The placeholder value in the UISearchBar
- * #### (iOS 11+ specific)
- */
- searchBarPlaceholder?: string;
- /**
- * Controls Hiding NavBar on focus UISearchBar
- * #### (iOS 11+ specific)
- */
- hideNavBarOnFocusSearchBar?: boolean;
- /**
- * Control the Large Title configuration
- * #### (iOS 11+ specific)
- */
- largeTitle?: OptionsTopBarLargeTitle;
- /**
- * Set the height of the navbar in dp
- * #### (Android specific)
- */
- height?: AndroidDensityNumber;
- /**
- * Change the navbar border color
- * #### (Android specific)
- */
- borderColor?: Color;
- /**
- * Set the border height of the navbar in dp
- * #### (Android specific)
- */
- borderHeight?: AndroidDensityNumber;
- /**
- * Set the elevation of the navbar in dp
- * #### (Android specific)
- */
- elevation?: AndroidDensityNumber;
- /**
- * Layout top margin
- * #### (Android specific)
- */
- topMargin?: number;
- }
-
- export interface SharedElementTransition {
- fromId: string;
- toId: string;
- duration?: number;
- interpolation: Interpolation;
- }
-
- export interface ElementTransition {
- id: string;
- alpha?: AppearingElementAnimation | DisappearingElementAnimation;
- translationX?: AppearingElementAnimation | DisappearingElementAnimation;
- translationY?: AppearingElementAnimation | DisappearingElementAnimation;
- scaleX?: AppearingElementAnimation | DisappearingElementAnimation;
- scaleY?: AppearingElementAnimation | DisappearingElementAnimation;
- rotationX?: AppearingElementAnimation | DisappearingElementAnimation;
- rotationY?: AppearingElementAnimation | DisappearingElementAnimation;
- x?: AppearingElementAnimation | DisappearingElementAnimation;
- y?: AppearingElementAnimation | DisappearingElementAnimation;
- }
-
- export interface AppearingElementAnimation extends ElementAnimation {
- from: number;
- }
-
- export interface DisappearingElementAnimation extends ElementAnimation {
- to: number;
- }
-
- export interface ElementAnimation {
- duration: number;
- startDelay?: number;
- interpolation: Interpolation;
- }
-
- export interface OptionsFab {
- id: string;
- backgroundColor?: Color;
- clickColor?: Color;
- rippleColor?: Color;
- visible?: boolean;
- icon?: ImageRequireSource;
- iconColor?: Color;
- alignHorizontally?: 'left' | 'right';
- alignVertically?: 'top' | 'bottom';
- hideOnScroll?: boolean;
- size?: number;
- actions?: OptionsFab[];
- }
-
- export interface OptionsBottomTabs {
- /**
- * Show or hide the bottom tabs
- */
- visible?: boolean;
- /**
- * Enable animations when toggling visibility
- */
- animate?: boolean;
- /**
- * Use large icons when possible, even when three tabs without titles are displayed
- * #### (android specific)
- * @default false
- */
- preferLargeIcons?: boolean;
- /**
- * Switch to another screen within the bottom tabs via index (starting from 0)
- */
- currentTabIndex?: number;
- /**
- * Switch to another screen within the bottom tabs via screen name
- */
- currentTabId?: string;
- /**
- * Set a testID to reference the bottom tabs
- */
- testID?: string;
- /**
- * Draw screen component under the tab bar
- */
- drawBehind?: boolean;
- /**
- * Set a background color for the bottom tabs
- */
- backgroundColor?: Color;
- /**
- * Set when tabs are attached to hierarchy consequently when the
- * RootView's constructor is called.
- */
- tabsAttachMode?: 'together' | 'afterInitialTab' | 'onSwitchToTab';
- /**
- * Control the Bottom Tabs blur style
- * #### (iOS specific)
- * @requires translucent: true
- * @default 'default'
- */
- barStyle?: 'default' | 'black';
- /**
- * Allows the Bottom Tabs to be translucent (blurred)
- * #### (iOS specific)
- */
- translucent?: boolean;
- /**
- * Hide the top line of the Tab Bar
- * #### (iOS specific)
- */
- hideShadow?: boolean;
- /**
- * Control the text display mode below the tab icon
- * #### (Android specific)
- */
- titleDisplayMode?:
- | 'alwaysShow'
- | 'showWhenActive'
- | 'alwaysHide'
- | 'showWhenActiveForce';
- /**
- * Set the elevation of the Bottom Tabs in dp
- * #### (Android specific)
- */
- elevation?: AndroidDensityNumber;
- }
-
- export interface DotIndicatorOptions {
- // default red
- color?: Color;
- // default 6
- size?: number;
- // default false
- visible?: boolean;
- }
-
- export type ImageResource = string;
-
- export interface OptionsBottomTab {
- dotIndicator?: DotIndicatorOptions;
-
- /**
- * Set the text to display below the icon
- */
- text?: string;
- /**
- * Set the text in a badge that is overlayed over the component
- */
- badge?: string;
- /**
- * Set the background color of the badge that is overlayed over the component
- */
- badgeColor?: string;
- /**
- * Set a testID to reference the tab in E2E tests
- */
- testID?: string;
- /**
- * Set the tab icon
- */
- icon?: ImageRequireSource | ImageResource;
- /**
- * Set the icon tint
- */
- iconColor?: Color;
- /**
- * Set the text color
- */
- textColor?: Color;
- /**
- * Set the selected icon tint
- */
- selectedIconColor?: Color;
- /**
- * Set the selected text color
- */
- selectedTextColor?: Color;
- /**
- * Set the text font family
- */
- fontFamily?: FontFamily;
- /**
- * Set the font weight, ignore fontFamily and use the iOS system fonts instead
- * #### (iOS specific)
- */
- fontWeight?: FontWeight;
- /**
- * Set the text font size
- */
- fontSize?: number;
- /**
- * Set the insets of the icon
- * #### (iOS specific)
- */
- iconInsets?: Insets;
- /**
- * Set selected icon image
- * #### (iOS specific)
- */
- selectedIcon?: ImageRequireSource;
- /**
- * Set true if you want to disable the icon tinting
- * #### (iOS specific)
- */
- disableIconTint?: boolean;
- /**
- * Set true if you want to disable the text tinting
- * #### (iOS specific)
- */
- disableSelectedIconTint?: boolean;
- /**
- * Set the font size for selected tabs
- * #### (Android specific)
- */
- selectedFontSize?: number;
- /**
- * If it's set to false, pressing a tab won't select the tab
- * instead it will emit a bottomTabPressedEvent
- */
- selectTabOnPress?: boolean;
- }
-
- export interface SideMenuSide {
- /**
- * Show or hide the side menu
- */
- visible?: boolean;
- /**
- * Enable or disable the side menu
- */
- enabled?: boolean;
- /**
- * Set the width of the side menu
- */
- width?: number;
- /**
- * Set the height of the side menu
- */
- height?: number;
- /**
- * Stretch sideMenu contents when opened past the width
- * #### (iOS specific)
- * @default true
- */
- shouldStretchDrawer?: boolean;
- }
-
- export interface OptionsSideMenu {
- /**
- * Configure the left side menu
- */
- left?: SideMenuSide;
- /**
- * Configure the right side menu
- */
- right?: SideMenuSide;
- /**
- * Configure how a user is allowed to open a drawer using gestures
- * #### (iOS specific)
- * @default 'entireScreen'
- */
- openGestureMode?: 'entireScreen' | 'bezel';
- }
-
- export interface OverlayOptions {
- /**
- * Capture touches outside of the Component View
- */
- interceptTouchOutside?: boolean;
- /**
- * Control wether this Overlay should handle Keyboard events.
- * Set this to true if your Overlay contains a TextInput.
- */
- handleKeyboardEvents?: boolean;
- }
-
- export interface ModalOptions {
- /**
- * Control wether this modal should be dismiss using swipe gesture when the modalPresentationStyle = 'pageSheet'
- * #### (iOS specific)
- */
- swipeToDismiss?: boolean;
- }
-
- export interface OptionsPreviewAction {
- /**
- * Reference ID to get callbacks from
- */
- id: string;
- /**
- * Action text
- */
- title: string;
- /**
- * Action style
- */
- style?: 'default' | 'selected' | 'destructive';
- /**
- * Subactions that will be shown when this action is pressed.
- */
- actions?: OptionsPreviewAction[];
- }
-
- export interface OptionsPreview {
- /**
- * Pass a react node tag to mark a SourceRect for a specific
- * peek and pop preview element.
- */
- reactTag?: number;
- /**
- * You can set this property specify the width of the preview.
- * If the width is greater than the device width, it will be zoomed in.
- */
- width?: number;
- /**
- * Height of the preview
- */
- height?: 100;
- /**
- * You can control if the users gesture will result in pushing
- * the preview screen into the stack.
- */
- commit?: boolean;
- /**
- * List of actions that will appear underneath the preview window.
- * They can be nested for sub actions.
- */
- actions?: OptionsPreviewAction[];
- }
-
- export interface OptionsAnimationPropertyConfig {
- /**
- * Animate from this value, ex. 0
- */
- from?: number;
- /**
- * Animate to this value, ex. 1
- */
- to?: number;
- /**
- * Animation duration
- * @default 300
- */
- duration?: number;
- /**
- * Animation delay
- * @default 0
- */
- startDelay?: number;
- /**
- * Animation interplation
- */
- interpolation?: 'accelerate' | 'decelerate';
- }
-
- /**
- * Used to animate the actual content added to the hierarchy.
- * Content can be a React component (component) or any other layout (Stack, BottomTabs etc)
- */
- export interface ScreenAnimationOptions {
- /**
- * Animate the element over x value
- */
- x?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over y value
- */
- y?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over translateX
- */
- translationX?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over translateY
- */
- translationY?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over opacity
- */
- alpha?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over scaleX
- */
- scaleX?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over scaleY
- */
- scaleY?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over rotationX
- */
- rotationX?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over rotationY
- */
- rotationY?: OptionsAnimationPropertyConfig;
- /**
- * Animate the element over rotation
- */
- rotation?: OptionsAnimationPropertyConfig;
- /**
- * Wait for the root view to render before start animation
- */
- waitForRender?: boolean;
- /**
- * Enable or disable the animation
- * @default true
- */
- enabled?: boolean;
- }
-
- export interface IconInsets {
- /**
- * Configure top inset
- */
- top?: number;
- /**
- * Configure left inset
- */
- left?: number;
- /**
- * Configure bottom inset
- */
- bottom?: number;
- /**
- * Configure right inset
- */
- right?: number;
- }
-
- export interface ViewAnimationOptions extends ScreenAnimationOptions {
- /**
- * ID of the Top Bar we want to animate
- */
- id?: string;
- }
-
- /**
- * Used for describing stack commands animations.
- */
- export interface StackAnimationOptions {
- /**
- * Wait for the View to render before start animation
- */
- waitForRender?: boolean;
- /**
- * Enable or disable the animation
- * @default true
- */
- enabled?: boolean;
- /**
- * Configure animations for the top bar
- */
- topBar?: ViewAnimationOptions;
- /**
- * Configure animations for the bottom tabs
- */
- bottomTabs?: ViewAnimationOptions;
- /**
- * Configure animations for the content (Screen)
- */
- content?: ViewAnimationOptions;
- /**
- * Animations to be applied on elements which are shared between the appearing and disappearing screens
- */
- sharedElementTransitions?: SharedElementTransition[];
- /**
- * Animations to be applied on views in the appearing or disappearing screens
- */
- elementTransitions?: ElementTransition[];
- }
-
- /**
- * Used for configuring command animations
- */
- export interface AnimationOptions {
- /**
- * Configure the setStackRoot animation
- */
- setStackRoot?: ViewAnimationOptions;
- /**
- * Configure the setRoot animation
- */
- setRoot?: ViewAnimationOptions;
- /**
- * Configure what animates when a screen is pushed
- */
- push?: StackAnimationOptions;
- /**
- * Configure what animates when a screen is popped
- */
- pop?: StackAnimationOptions;
- /**
- * Configure what animates when modal is shown
- */
- showModal?: ViewAnimationOptions;
- /**
- * Configure what animates when modal is dismissed
- */
- dismissModal?: ViewAnimationOptions;
- }
-
- export interface Options {
- /**
- * Configure the status bar
- */
- statusBar?: OptionsStatusBar;
- /**
- * Configure the layout
- */
- layout?: OptionsLayout;
- /**
- * Configure the presentation style of the modal
- */
- modalPresentationStyle?: OptionsModalPresentationStyle;
- /**
- * Configure the transition style of the modal
- *
- * #### (Android specific)
- */
- modalTransitionStyle?: OptionsModalTransitionStyle;
- /**
- * Configure the top bar
- */
- topBar?: OptionsTopBar;
- fab?: OptionsFab;
- /**
- * Configure the bottom tabs
- */
- bottomTabs?: OptionsBottomTabs;
- /**
- * Configure the bottom tab associated to the screen
- */
- bottomTab?: OptionsBottomTab;
- /**
- * Configure the side menu
- */
- sideMenu?: OptionsSideMenu;
- /**
- * Configure the splitView controller
- */
- splitView?: OptionsSplitView;
- /**
- * Configure the overlay
- */
- overlay?: OverlayOptions;
- /**
- * Configure the modal
- */
- modal?: ModalOptions;
- /**
- * Animation used for navigation commands that modify the layout
- * hierarchy can be controlled in options.
- *
- * Animations can be modified per command and it's also possible
- * to change the default animation for each command.
- *
- * Example:
- ```js
- setRoot: {
- y: {
- from: 1000,
- to: 0,
- duration: 500,
- interpolation: 'accelerate',
- },
- alpha: {
- from: 0,
- to: 1,
- duration: 400,
- startDelay: 100,
- interpolation: 'accelerate'
- }
- }
- ```
- */
- animations?: AnimationOptions;
- /**
- * Preview configuration for Peek and Pop
- * #### (iOS specific)
- */
- preview?: OptionsPreview;
- /**
- * Enable or disable swipe back to pop gesture
- * #### (iOS specific)
- * @default true
- */
- popGesture?: boolean;
- /**
- * Background image for the screen
- * #### (iOS specific)
- */
- backgroundImage?: ImageRequireSource;
- /**
- * Background image for the Navigation View
- * #### (iOS specific)
- */
- rootBackgroundImage?: ImageRequireSource;
- /**
- * Enable or disable automatically blurring focused input, dismissing keyboard on unmount
- * #### (Android specific)
- * @default false
- */
- blurOnUnmount?: boolean;
- /**
- * Props to pass to a component
- */
- passProps?: Record<string, any>;
- }
|