duyduong / flutter_native_admob

Plugin to integrate native firebase admob to Flutter application
MIT License
62 stars 85 forks source link

Same ad is showing in list view #75

Open zjamshidi opened 3 years ago

zjamshidi commented 3 years ago

Hi Thanks for your outstanding plugin. I want to load and show native ads in a SliverList. Regardless of the number of NativeAdmob widgets, only one ad is loaded to all widgets.

To be sure about my implementation, I checked the sample app. When you run the sample app, you see the same ad is showing in both widgets. When you refresh the ads, they got reloaded but still, the ad which is showing by the widgets are the same: image Is it only me or it's a bug?

bdlukaa commented 3 years ago

That's because you're using test ads. They're likely supposed to be the same ad. Sometimes the same ad showed up for me in different screens. This is an expected behavior

zjamshidi commented 3 years ago

I will check with "real" ads and update here.

oguz42 commented 3 years ago

same problem here "real" ads.

haresh4d commented 3 years ago

You must have used same controller object for both the ad. In that case it will show the same ad. If you reload the ad then all the ads under the controller will be reloaded.

Its confusing. Someone please try to solve it.