Hackle WebView configuration options

interface HackleWebViewBridgeProps {
    children: ReactNode;
    style?: StyleProp<ViewStyle>;
    automaticScreenTracking?: boolean;
    automaticEngagementTracking?: boolean;
    automaticRouteTracking?: boolean;
}

Hierarchy (view full)

Properties

children: ReactNode

Must be exactly one direct <WebView> child. Otherwise a dev-build warning is logged and load gating is skipped.

style?: StyleProp<ViewStyle>

Passed to the inner container view. Defaults to flex: 1.

automaticScreenTracking?: boolean

Whether to automatically collect $page_view events

false
automaticEngagementTracking?: boolean

Whether to automatically collect engagement events

false
automaticRouteTracking?: boolean

Whether to automatically collect page route information

true