Monetization Packages

google_mobile_ads

Google Mobile Ads may use the Flutter plugin, which supports banner, interstitial (full-screen), rewarded and native advertisements.

unity_ads_plugin

The Unity Ads plugin for Flutter Applications is a mobile game advertising platform. This plugin can show both Unity Banner Ads and Unity Video Ads.

appodeal_flutter

Appodeal is a Flutter plugin that displays advertisements on the app. To track users, it includes a consent dialog.

native_admob_flutter

Using the PlatformViews and Google’s ADMOB SDK, you can rapidly create native advertisements in Dart.

flutter_funding_choices

A Google service that allows users to grant consent for customized advertising is used in Flutter’s Funding Choices.

pangle_flutter

A Flutter plugin that works with the ByteDance Pangle SDK on Android and iOS. It supports Splash Ads, Rewarded Video Ads, and other similar services are some of them.

facebook_audience_network

You can use the Facebook Audience Network plugin for Flutter applications to display Facebook Banner ads, Interstitial advertisements, Rewarded video commercials, and Native advertising.

adcolony_flutter

AdColony ad format with Flutter plugin (support for both Android and iOS)

in_app_purchase

In-app purchases using the Flutter framework. This plugin exposes App Store and Google Play in-app purchase APIs.

purchase_paywall

PurchasePayWall is an app that generates a purchase paywall for your Shopify store. PurchasePayWall supports a variety of payment methods and design needs by providing various types of PayWalls.

Similar Posts

  • Shared Preferences Packages

    shared_preferences The Flutter plugin for reading and writing simple key-value pairs wraps NSUserDefaults on iOS and SharedPreferences on Android. rx_shared_preferences Preference updates for the rxdart streaming service are communicated via Reactive Streams. The SharedPreference wrapper is reactive stream rxdart. A stream-based wrapper around shared preferences that allows for reactively stored key-value pairs. shared_preferences_dtx The shared…

  • Color Pickers

    o_color_picker The package includes a simple and fast two-step color picker that lets you select colors or tones. flex_color_picker The primary, accent, and custom color picker are all editable. An optional HSV wheel color picker is also available. flutter_circle_color_picker A lovely flutter color picker that chooses HSL colors. flutter_colorpicker This is a flutter library that…

  • Dialog Packages

    A Dialog is a class that is intended to be subclassed by other classes. It’s often used to display messages on the page, or make choices available to the user. Flutter has a few built-in dialogs, but there are times when you need to build your own or use an existing package. adaptive_dialog Adaptively display…

  • Text Packages

    One of the benefits of using Flutter is its rich graphical system, which makes it easy for developers to make their app look great with very little effort. To help you get started, we’ve put together this roundup of some of our favorite packages and libraries for creating beautiful text layouts with Flutter! flutter_typeahead A…

  • State Manager

    If you are new to Flutter and state management, I suggest using riverpod package. Provider and Riverpod are both good. provider InheritedWidget are snippets of code that allow you to reuse and easily add functionality to widgets. This package adds a wrapper around it so they’re easier to use and more reusable. Too often when…