pavelzaichyk / flutter_unity_ads

Unity Ads plugin for Flutter Applications. This plugin is able to display Unity Banner Ads and Unity Video Ads.
https://pub.dev/packages/unity_ads_plugin
MIT License
31 stars 12 forks source link

How to load reward ad without displaying it? #19

Closed anass-naoushi closed 2 years ago

anass-naoushi commented 2 years ago

I need to load the reward ad without displaying it in order to show it to the user later so that he does not wait when it is needed to be shown. How can I do that?

Hassico commented 2 years ago

Yes how to do so?

pavelzaichyk commented 2 years ago

load video ads functionality is added in unity_ads_plugin: ^0.3.0

UnityAds.load(
  placementId: 'PLACEMENT_ID',
  onComplete: (placementId) => print('Load Complete $placementId'),
  onFailed: (placementId, error, message) => print('Load Failed $placementId: $error $message'),
);