UNPKG

react-native-appodeal

Version:

React Native Module created to support Appodeal SDK for iOS and Android platforms

19 lines 781 B
/** * Appodeal Banner Ad Component * * A React Native component for displaying banner ads using the Appodeal SDK. * Banner ads are typically 320x50 pixels for phones and 728x90 for tablets. */ import { type NativeProps } from './specs/AppodealBannerViewNativeComponent'; /** * Appodeal Banner Ad Component * * Renders a banner ad with automatic height adjustment based on device type. * Supports both phone and tablet layouts with appropriate sizing. * * @param props - Component props including adSize, style, and event handlers * @returns React component for banner ads */ declare const AppodealBanner: ({ adSize, style, ...rest }: NativeProps) => import("react/jsx-runtime").JSX.Element; export default AppodealBanner; //# sourceMappingURL=RNAppodealBanner.d.ts.map