flutter_ads_package_legacy 1.0.1 flutter_ads_package_legacy: ^1.0.1 copied to clipboard
A custom widget for displaying Clever Advertising ads in flutter/flutterflow.
Used Versions #
JVM: 14.0.2 .android/gradle/wrapper/gradle-wrapper.properties
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
Getting started #
Our package depends internally on the following packages, which have been tested with the matching versions:
+ webview_flutter: 1.0.7
+ package_info_plus: 0.6.4
Please check the 'installing' tab to get started with the package installation before proceeding into the next section.
Usage #
Import our package as shown in the example below:
import 'package:flutter_ads_package_legacy/flutter_ads_package.dart';
import 'package:flutter/material.dart';
void main() {
runApp( MaterialApp(
home: Scaffold(
backgroundColor: const Color.fromARGB(255, 199, 218, 228),
appBar: AppBar(
title: const Text("Clever Advertising Widget Example"),
),
body: CleverAddAppAdsWidget(scriptId: "123456"),
),
),
);
}