interface SkipButtonProps {
    icon?: {
        backward: ReactNode;
        forward: ReactNode;
    };
    rotate?: boolean;
    skip: number;
    style?: StyleProp<ViewStyle>;
    textStyle?: StyleProp<TextStyle>;
}

Properties

icon?: {
    backward: ReactNode;
    forward: ReactNode;
}

The icon components used in the button.

Type declaration

  • backward: ReactNode
  • forward: ReactNode
rotate?: boolean

Whether the skip button should do a rotation animation when pressed instead of fading.

skip: number

/**

  • The skip value for the skip button. This can be set to negative to skip backwards.

The style overrides for the skip button.

textStyle?: StyleProp<TextStyle>

The style overrides for the text in the skip button.

Generated using TypeDoc