Banner Ads
This guide explains how to integrate banner ads into a ReactNative app.
Banner Ad units display rectangular ads that occupy a portion of an app's layout. They can refresh automatically after a set period of time. This means users view a new ad at regular intervals, even if they stay on the same screen in your app. They're also the simplest ad format to implement.
Banner Ad management in React Native is handled through the BannerAdView component from react-native-cas,
which represents an ad view used directly in JSX.
import { BannerAdView, BannerAdSize } from 'react-native-cas';
CAS provides an option to enable autoReload to simplify your app logic. The autoReload is enabled by default, loading failures will trigger automatic retry attempts.
You should decide whether to enable autoReload, or manually manage each ad loading cycle in your code.
Also, banner ads support automatic refreshInterval regardless of the autoReload setting.
Below is a diagram showing the ad lifecycle and how autoReload and refreshInterval affect it.

Choose the Ad size
To add a banner ad, you need to specify the ad size. To do this, choose one of the AdSize from the list below:
- Adaptive banner ads have a fixed aspect ratio for the maximum width.
The adaptive size calculates the optimal height for that width with an aspect ratio similar to 320x50.
By default, the full screen width will be used. You can limit width by specifying a
maxWidthin the parameters.
const adSize = BannerAdSize.ADAPTIVE;
- Inline banner ads have a desired width and a maximum height, useful when you want to limit the banner's height.
Inline banners are larger and taller compared to adaptive banners. They have variable height, including Medium Rectangle size,
and can be as tall as the device screen. Specify the
maxWidthandmaxHeightdimensions to limit the ad size.
const adSize = BannerAdSize.INLINE;
- Smart selects the optimal dimensions depending on the device type. For mobile devices, it returns 320x50, while for tablets, it returns 728x90. In the UI, these banners occupy the same amount of space regardless of device type.
const adSize = BannerAdSize.SMART;
- Medium Rectangle has a fixed size of 300x250.
const adSize = BannerAdSize.MREC;
- Leaderboard has a fixed size of 728x90 and is allowed on tablets only.
const adSize = BannerAdSize.LEADERBOARD;
- Standard Banner has a fixed size of 320x50 and is the minimum ad size
const adSize = BannerAdSize.BANNER;
Show Ad View
BannerAdView is a React component and can be used like any other view.
<BannerAdView
size={adSize}
maxWidth={undefined}
maxHeight={undefined}
autoReload={true}
/>
The ad content will be loaded automatically as soon as the view is mounted. Keep in mind that loading the ad takes some time, so avoid frequently unmounting and remounting the view.
While the ad is loading, the widget will have a size of (1x1). When the ad loads, the widget will automatically adopt the selected size.
The size of the container in which you place your ad must be at least as large as the AdSize. Any padding effectively decreases the size of your container.
Ad content callbacks
BannerAdView supports lifecycle callbacks via props:
const onAdLoadedCallback = useCallback((data: AdViewInfo) => {
// Called when an ad is successfully loaded.
console.log('Banner Ad loaded', data);
}, []);
const onAdFailedCallback = useCallback((err: AdError) => {
// Called when an ad load failed.
console.log('Banner Ad load failed', err);
}, []);
const onAdClickedCallback = useCallback(() => {
// Called when a click is recorded for an ad.
console.log('Banner Ad clicked');
}, []);
const onAdImpressionCallback = useCallback((info: AdContentInfo) => {
// Called when an impression occurs on the ad.
console.log('Banner Ad impression', info);
}, []);
return <BannerAdView
size={adSize}
onAdViewLoaded={onAdLoadedCallback}
onAdViewFailed={onAdFailedCallback}
onAdViewImpression={onAdClickedCallback}
onAdViewClicked={onAdImpressionCallback}
/>
Read more about AdContentInfo structure in Impression Level Data.
Ad refresh interval
The automatic refresh interval determines how often a new ad request is generated. Once the interval elapses, a new ad will automatically load and display.
The interval countdown runs only while the ad is visible on screen.
Set a custom refresh interval longer than 10 seconds, or 0 to disable refresh option. Default refresh interval is 30 seconds.
Override the automatic refresh interval in refreshInterval property:
<BannerAdView
size={adSize}
refreshInterval={30}
/>
Set refreshInterval={0} to disable. Default interval 30 seconds.
Manual reload Ad
When you want to manually control ad loading, use the loadAd() function on the BannerAdViewRef to retry loading with the same configuration.
const bannerAdRef = useRef<BannerAdViewRef>(null);
const retryTimer = useRef<ReturnType<typeof setTimeout> | null>(null);
useEffect(() => {
return () => {
if (retryTimer.current) clearTimeout(retryTimer.current);
retryTimer.current = null;
};
}, []);
const onAdLoadedCallback = useCallback((data: AdViewInfo) => {
if (retryTimer.current) {
clearTimeout(retryTimer.current);
retryTimer.current = null;
}
}, []);
const onAdFailedCallback = useCallback((err: AdError) => {
if (retryTimer.current) clearTimeout(retryTimer.current);
retryTimer.current = setTimeout(() => {
retryTimer.current = null;
bannerAdRef.current?.loadAd();
}, 10000);
}, []);
return <BannerAdView
ref={bannerAdRef}
size={adSize}
autoReload={false}
onAdViewLoaded={onAdLoadedCallback}
onAdViewFailed={onAdFailedCallback}
/>
BannerAdView props
sizeBannerAdSizerequiredRepresents the size of a banner ad.
maxWidthnumberoptionalMaximum width for banner ad. Defaults to screen width.
maxHeightnumberoptionalMaximum height for banner ad. Defaults to screen height.
autoReloadbooleanoptionalIf enabled, the ad will automatically retry loading the ad if an error occurs during the loading process. By default enabled.
refreshIntervalnumberoptionalSets the refresh interval in seconds for displaying ads. Set 0 to disable automatic refreshing.
This automatic refresh worksregardless of the autoReload setting. By default 30 seconds.
casIdstringoptionalThe unique identifier of the CAS content for each platform. Leave undefined to use the initialization identifier.
onAdViewLoaded(info: AdViewInfo) => voidoptionalCallback to be invoked when the ad content has been successfully loaded.
onAdViewFailed(error: AdError) => voidoptionalCallback to be invoked when the ad content fails to load.
onAdViewClicked() => voidoptionalCallback to be invoked when the ad content is clicked by the user.
onAdViewImpression(info: AdContentInfo) => voidoptionalCallback to be invoked when an ad is estimated to have earned money.