Wiki

Clone wiki

REACT native plugin / inFeedBannerViewWillDisappear

Overview

Should be called when the component that holds the in-feed banner ads will be unmount.

Syntax

inFeedBannerViewWillDisappear(placementName))
placementName (required)

string. Unique name of placement. The same name will be used in addapptr.com account.

Examples

#!javascript
componentWillUnmount() {
    RNAatkit.inFeedBannerViewWillDisappear("InFeed");
}

Updated