flutter_native_ad 1.0.0 copy "flutter_native_ad: ^1.0.0" to clipboard
flutter_native_ad: ^1.0.0 copied to clipboard

Flutter Native Ads Plugin is Allow Show All Types of Ads in One Package.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_native_ad/flutter_native_ad.dart';
import 'screens/home_screen.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    FlutterNativeAd.init();
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: HomeScreen()
    );
  }
}
7
likes
130
points
166
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter Native Ads Plugin is Allow Show All Types of Ads in One Package.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, google_mobile_ads, plugin_platform_interface

More

Packages that depend on flutter_native_ad