我想使函数检查是否有Admob广告,以及是否没有显示其他广告。 因此,如果Admob广告没有展示,我想展示另一个广告 正确的做法。请帮帮我 代码:
import React from 'react';
import { Text, View, StyleSheet, ScrollView, Dimensions } from 'react-native';
import {
AdMobBanner
} from 'expo-ads-admob';
class MediumAdmobAd extends React.Component {
constructor() {
super();
}
render() {
return (
<View>
{!this.state.hasAd ?
(
// main add
)
:
(
<View>
// Another ad if first ad is not finding
</View>
</View>
)
}
</View>
);
}
}
export default MediumAdmobAd;