flutter_native_admob
flutter_native_admob copied to clipboard
Plugin to integrate native firebase admob to Flutter application
I just built the example project to release mode for preview, and I found the apps screen looks not smooth when NativeAdmob came from listview, why did this happen? https://drive.google.com/file/d/1D8qLsyAu2ofA4_E8hVRIlrU-q1LgrTpy/view?usp=sharing
I have tried putting the ad in `InkWell` and it doesn't work. ``` InkWell( onTap: () => log('Clicked'), child: NativeAdmob( adUnitID: _adUnitID, numberAds: 3, controller: _nativeAdController, type: NativeAdmobType.full, ), ),...
Hey after add flutter_native_admob: ^2.1.0+3 to yaml app crash on start
MacOS Catalina 10.15.7, Xcode 12.1, IOS 14.1 (only tested on simulator - debug mode) I have high CPU usage of Diagnosticd service on MacOS when I open multiple views with...
When i add it to listview and scroll down to outside of AdView it will hidden, then i scroll up to view it again it not show
I am getting error message as error loading 0 with original adUnit ID's. But with test adUnit ID's ads are showing up perfectly. I have created adUnit ID's more than...
NativeTextStyle's fontSize is not working, i tested it with many values but it's not changing from the default one ``` import 'package:flutter/material.dart'; import 'package:flutter_native_admob/flutter_native_admob.dart'; import 'package:flutter_native_admob/native_admob_controller.dart'; import 'package:flutter_native_admob/native_admob_options.dart'; void main()...
Hi, First of all, thanks a lot for this package. Would it be possible to add user targeting that would be awesome. Thanks,
When the application has finished loading the ad, the application experiences a lag before displaying it. I'm using the code: ```dart return Container( child: NativeAdmob( adUnitID: 'ca-app-pub-example/example', loading: Center(child: CircularProgressIndicator()),...
When I run the example project, I see the ad. However, if I change the info.plist and _adUnitID values, the ad is not visible. How to solve it?