Versions Compared

Key

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

...

Info

In this example an interstitial would be triggered when we see the NewsPostDetailsPage comes to live after loading.

...

Example of button press:

with this button code

Code Block
languagedart
class MainPage extends StatefullWidget {
  ...
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ListView(
        children: [
          ...
          R89Tag(
            tag: 'banner_tag',
            child: Padding(
              padding: const EdgeInsets.all(8.0),
              child: Text(
                'Single Tag: All-in-One\nAd Management Solution for Publishers',
       
           
              ),
            ),
          ),
          ...
        ],
      ),
    );
  }
}