I am not aware of any SDK ad packages specifically designed for Flutter today.
Flutter-enabled apps are regular iOS or Android apps that include FlutterView, so ad frames using UIView or android.View playback systems should be included in addition to (or fully) on top of FlutterView today. hello_services in Flutter examples has an example of placing other UIView or android.View objects next to the FlutterView object in the hierarchy of views on iOS and Android: https://github.com/flutter/flutter/tree/master/examples/hello_services
However, there is no way to place a UIView or an android.View object inside or translucently behind FlutterView yet, and there are no explicit players with ads in Flutter.
If you tried to integrate advertising into an application using flutter, and you had problems, we would also like to hear from you. flutter.io lists many ways to contact the team (including stack overflows).
As mentioned above in Seth, there is an error in the Flutter file about providing a good example of integrating ads and improving ways to do this: https://github.com/flutter/flutter/issues/8098
source share