maximumBannerSizeLandscape
Overview
Returns the banner size with maximum width that will fit on a given device in landscape screen orientation.
Syntax
maximumBannerSizeLandscape(Callback callback)CALLBACK(REQUIRED)
Callback<string> Used to provide the function call result to JavaScript.
Parameters:
- string - Banner size best fitting current device. 
Examples
RNAatkit.maximumBannerSizeLandscape((size) => {
                console.log("maximumBannerSizeLandscape " + size);
            });Last updated
