bdlukaa / native_admob_flutter

Easy-to-make native ads in flutter using AdMOB SDK.
https://pub.dev/packages/native_admob_flutter
BSD 3-Clause "New" or "Revised" License
80 stars 56 forks source link

[Feature Request] Mute ads at app level #128

Closed nathan1658 closed 2 years ago

nathan1658 commented 2 years ago

The official google_mobile_ads have a feature of MobileAds.instance.setAppMuted(true);, Is there a similar way to archive the same stuff with this library? It would be great to have this feature for this library. I've came across multiple flutter ads library and for me this is the best one, much better performance then the official google_mobile_ads, amazing work!

bdlukaa commented 2 years ago

https://github.com/bdlukaa/native_admob_flutter/blob/master/lib/src/mobile_ads.dart#L312

MobileAds.setAppMuted(true)

or

MobileAds.setVolume(<volume>)

nathan1658 commented 2 years ago

https://github.com/bdlukaa/native_admob_flutter/blob/master/lib/src/mobile_ads.dart#L312

MobileAds.setAppMuted(true)

or

MobileAds.setVolume(<volume>)

Sorry for overlooking it. Appreciated it!