Flutter - Documentação do SDK de Monetização de Aplicativos

⌘K
  1. Flutter - Monetize App SD...
  2. Guia do Usuário
  3. Formatos de Anúncio
  4. Faixa

Faixa

Rectangular advertisements that remain visible on the screen during user interaction with the application, and have the ability to refresh automatically after a specified duration.

Mostrar o anúncio

In the example we are using a Test Id.

If you are not testing the app, change it for the proper ID that you got from us.

@override
  Widget build(BuildContext context) => Scaffold(
    appBar: ...,
    body: Column(children: [
      ...
      R89Banner(
          configurationId: ConfigBuilder.bannerTestR89ConfigId),
      ...
    ],),
  );

Eventos do Ciclo de Vida

To receive the lifecycle events, provide BannerEventListener para R89Banner via callbacksLifecycle parâmetro. Detalhes sobre BannerEventListener pode ser encontrado no Referência.

@override
  Widget build(BuildContext context) => Scaffold(
    appBar: ...,
    body: Column(children: [
      ...
      R89Banner(
              configurationId: ConfigBuilder.bannerTestR89ConfigId,
              lifecycleCallbacks: BannerEventListener.callbacks(
                  onLoadedCallback: () {},
                  onImpressionCallback: () {},
                  onLayoutChangeCallback: (width, height) {},
                  onClickCallback: () {},
                  onOpenCallback: () {},
                  onCloseCallback: () {},
                  onFailedToLoadCallback: (error) {},)
            ),
      ...
    ],),
  );

Como podemos ajudar?