whistle_feed 0.0.9 copy "whistle_feed: ^0.0.9" to clipboard
whistle_feed: ^0.0.9 copied to clipboard

outdated

Whistle Feed Sdk Provides a Developer EASE of Integrating to Whistle feed Adds Into Flutter Applications

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:whistle_feed/listeners/MyAdShowListener.dart';
import 'package:whistle_feed/whistle_adds.dart';
void main() {runApp(MyApp());}
class MyApp extends StatefulWidget{

  _myappstate createState()=> _myappstate();

}
class _myappstate extends State<MyApp>{

  MyAdShowListener adShowListener = MyAdShowListener(); // you can use your event listeners for adds

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home:  Scaffold(
        body: Column(
          children: [
            SizedBox(height: 100,),
            Container(
              child:
              whistlefeed(
                pencil_size: 1, // number of Ad cubes
                publisher_token: 'YOUR_PUBLISHER_TOKEM',// add your publisher  token here
                adShowListener: adShowListener, // passing the listeners
              ), /////live////
            )
          ],
        ),
      ),
    );
  }
}
4
likes
0
points
2
downloads

Publisher

unverified uploader

Weekly Downloads

Whistle Feed Sdk Provides a Developer EASE of Integrating to Whistle feed Adds Into Flutter Applications

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_inappwebview, http, package_info_plus, url_launcher

More

Packages that depend on whistle_feed