interface LiveButtonProps {
    atLiveColor?: ColorValue;
    behindLiveColor?: ColorValue;
    icon?: {
        goToLive: ReactNode;
    };
    style?: StyleProp<ViewStyle>;
    testID?: string;
    textStyle?: StyleProp<TextStyle>;
}

Hierarchy

  • ButtonBaseProps
    • LiveButtonProps

Properties

atLiveColor?: ColorValue

The color of the live indicator at the live edge.

behindLiveColor?: ColorValue

The color of the live indicator behind the live edge.

icon?: {
    goToLive: ReactNode;
}

The icon components used in the button.

Type declaration

  • goToLive: ReactNode

The style overrides for the button.

testID?: string

An id used to locate this view in end-to-end tests.

textStyle?: StyleProp<TextStyle>

The text style overrides for the button.