flutter_adserver 0.0.1 copy "flutter_adserver: ^0.0.1" to clipboard
flutter_adserver: ^0.0.1 copied to clipboard

Flutter package for adserve

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_adserver/ads.dart';
import 'package:flutter_adserver/adview.dart';
import 'package:flutter_adserver/model/config.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  @override
  void initState() {
    // TODO: implement initState
    super.initState();
    Ads().init(Config(apiConfig: APIConfig("", "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6IjZiNzY1YmFlYTFlNDg1ZjJlMjMyN2E4NDM0NWNlNzdmNTM3MjQzYjYwMjc4NDFjMzczY2ExNGRiOTk4YmQ4YWM4MmEzNjU5ODg2ZjEzMjhjIn0.eyJhdWQiOiI4IiwianRpIjoiNmI3NjViYWVhMWU0ODVmMmUyMzI3YTg0MzQ1Y2U3N2Y1MzcyNDNiNjAyNzg0MWMzNzNjYTE0ZGI5OThiZDhhYzgyYTM2NTk4ODZmMTMyOGMiLCJpYXQiOjE2NDY4MjAxNTUsIm5iZiI6MTY0NjgyMDE1NSwiZXhwIjoxNjQ2OTkyOTU1LCJzdWIiOiIxNzM1MTIiLCJzY29wZXMiOlsic3Vic2NyaWJlciJdLCJwYXJhbXMiOnsiaWQiOjE3MzUxMiwicmVzZWxsZXJfaWQiOjUsInVzZXJuYW1lIjoibmlyb2ptYWhhcmphbjIwNTAiLCJzZXJpYWwiOiIwMDIyNkQ4QTdCQTMiLCJzZXNzaW9uIjoiIiwicmVzZWxsZXIiOiJ3b3JsZGxpbmsiLCJleHBpcnlfZGF0ZSI6IjIwMjUtMDEtMTEgMDA6MDA6MDAiLCJjb250ZW50X2V4cGlyeSI6IjAiLCJhdXRoX21vZGUiOiJzZXJpYWwiLCJyZXF1ZXN0ZWRfdXNlciI6bnVsbCwic2Vzc2lvbl9pZCI6bnVsbCwiZGV0YWlscyI6IjE3MzUxMi03MjU1NzEyIn19.H3AauBn5b99RAmzfurqza0encRp4iz0KzojCCrUaumE8QAswnATOeY8StNCMmUfbAC2ULpV77Z2lKnNohgT0m6Mn5XW6zdgTawRaeUSAhzl0W0NeDMA6IRzdorg99wfYpzmAMOtah6lcNNgXMdplsfVAwcIBqIYd-DQrADJtQj_GJ85U13pXXTwz-Pr_V9-9_-XrsN-irYeVcMTCsZeU89U-Z0NIAtxQI_48jv0tOyujja3YMvt6XJxSOZP6j-S-wFVU-qj7Oh-ih2jwkN0JkKs7KMkQ3kxzGKzEi5gDqGh_P-fkoc32IQczfglw-6kKKnMbtY5N__HrkloiB-FfKYtijTbFK02a9_b2Sdpy9fqmexhLfNE_E9DKWSu69RMoIQv5wu9iA6JyBaDHEGTvZkZFIbVzooPgDFS3yHJGTvFNn_4g8A_55U-l1sGHvbbvs8mGLHaO40lkjTOdrryDc54FKCt8bGdwiaOft4Crl7TlYdH1aT8QRC3LwhhtSbUsVHxzyZgMIOVEij3xcKLD4-jcGSyCal7tspT_6kydLVpnnKtFIibCulfJWxrqzGz9GUYOkTOGGoqjRrBoSOfYWECnEiSDJH-Rl69oGgk4pvP-D8D3fyZ0nj4P0a2Z2stmFoRpXH1XNfo2dAA5LDuiGezDHXTlMYnjxRAjoWR64jc"),
        deviceConfig: DeviceConfig("flutter", null),
        userConfig: UserConfig("5", "00226D8A7BA3","173512")));
  }
  @override
  Widget build(BuildContext context) {
    print("called main multiple time");
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          // Column is also a layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Invoke "debug painting" (press "p" in the console, choose the
          // "Toggle Debug Paint" action from the Flutter Inspector in Android
          // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
          // to see the wireframe for each widget.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Container(
              height: 100,
              width: 100,
              child: AdView(adSlot: "app-10001-0005", boxFit: null,),
            )
            ,
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
    );
  }
}
2
likes
90
pub points
0%
popularity

Publisher

unverified uploader

Flutter package for adserve

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, get, jwt_decode

More

Packages that depend on flutter_adserver