ia-sdk-react-native-monorepo - v1.0.0
    Preparing search index...

    Interface IaSdkPlatformViewProps

    interface IaSdkPlatformViewProps {
        componentParams?: { [key: string]: string | number | boolean | null };
        selfSizing?: boolean;
        style?: ____ViewStyleProp_Internal;
        viewId: string;
    }
    Index

    Properties

    componentParams?: { [key: string]: string | number | boolean | null }

    Optional configuration parameters forwarded to the native component.

    selfSizing?: boolean

    Whether the native component reports its intrinsic content size back to JS. When true (default), the component sizes itself to the native-reported dimensions. Set to false for components that fill the space the host provides (e.g. scrollable views) - the host must then supply bounded constraints (e.g. via a style={{ height }} prop).

    style?: ____ViewStyleProp_Internal

    Optional style overrides for the wrapping view.

    viewId: string

    Native component identifier (e.g. cartButton, productGrid). Picked up by the native ViewManager to construct the matching SwiftUI/Compose view.