flutter_native_ad 0.0.1 copy "flutter_native_ad: ^0.0.1" to clipboard
flutter_native_ad: ^0.0.1 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 'dart:async';

import 'package:flutter/services.dart';
import 'package:flutter_native_ad/flutter_native_ad.dart';
import 'package:flutter_native_ad_example/Screen/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: HomePage()
    );
  }
}
4
likes
100
pub points
35%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, google_mobile_ads, plugin_platform_interface

More

Packages that depend on flutter_native_ad