react-native-whip-whep - v0.2.1
    Preparing search index...

    Type Alias ReactNativeMobileWhepClientViewProps

    Describes props that can be passed to the module view.

    type ReactNativeMobileWhepClientViewProps = {
        orientation?: "landscape" | "portrait";
        ref: React.ForwardedRef<
            React.ComponentType<ReactNativeMobileWhepClientViewProps>,
        >;
        style: React.CSSProperties;
    }
    Index

    Properties

    orientation?: "landscape" | "portrait"

    Used to set the orientation of the video. Defaults to "portrait".

    ref: React.ForwardedRef<
        React.ComponentType<ReactNativeMobileWhepClientViewProps>,
    >

    Used to get a reference to the React component instance. It is useful for accessing the component methods and properties directly.

    style: React.CSSProperties

    Used to apply custom styles to the component. It should be a valid CSS object for style properties.