jsdf/react-native-htmlview

How to view my admob in htlmview

FindelFof opened this issue · 1 comments

Hi friends, do you have any tips or solutions to be able to see my. admod in htlmview?
before I did this:

let text = Tf[0].split(' ');
const chunks = [];
if(T>=2000){
for (let i = 0; i < text.length; i += 200) {
chunks.push(text.slice(i, i + 200));
}

return chunks
  .map(chunk => chunk.join(' '))
  .map((value,key) => (
    <Card transparent style={{alignItems: 'center',textAlign:'justify'}} key={key}>
      <Text style={{color: '#686868',marginLeft: 10,marginRight: 10,}}>{value}</Text>
      <AdMobBanner
       bannerSize="mediumRectangle"
       adUnitID="ca-app-pub-4732238437707816/1240578953"
       didFailToReceiveAdWithError={this.bannerError} />
    </Card>
  ));

Any progress on this ?