google_ads_module 1.1.1 copy "google_ads_module: ^1.1.1" to clipboard
google_ads_module: ^1.1.1 copied to clipboard

Google Ads Network Plugin For MultiAdNetwork

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const GoogleAdsModuleExampleApp());
}

class GoogleAdsModuleExampleApp extends StatelessWidget {
  const GoogleAdsModuleExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Google Ads Module Example',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Google Ads Module Example'),
        ),
        body: const Center(
          child: Text('Google Ads Module example app'),
        ),
      ),
    );
  }
}