Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Flutter Get Started

  2. Flutter Manual Implementation

Show the Ad

Use the R89OutStream(configurationId:...,) widget provided by the SDK to display a video ad.

Code Block
languagedart
@override
  Widget build(BuildContext context) => Scaffold(
    appBar: ...,
    body: Column(children: [
      ...
      R89OutStream(
          configurationId: ConfigBuilder.videoOutStreamTestR89ConfigId),
      ...
    ],),
  );

...