Beta!

The **Taboola Flutter** plugin is in **Beta**. Before moving ahead with your Flutter integration, make sure to reach out to your **Taboola** contact.

Example App

Take a look at our Flutter example app on [github](πŸ”—ο»Ώ).

## Step 1: Dependencies & Permissions

### General

  1. You can incorporate the **Taboola** package from the following pub.dev

ο»Ώ
  1. In your project’s `pubspec.yaml`, under β€˜dependencies:’, add:

ο»Ώ
  1. Don't forget to turn off the Taboola logs before uploading your app to the Google Play / App Store

ο»Ώ

Running The Flutter App

To run the Flutter app on versions 2.x and above, use the "--no-sound-null-safety" flag. For example: "flutter run --no-sound-null-safety"

### Android

Add permissions in your relevant `AndroidManifest.xml`, above the `<application>` tag, add

ο»Ώ

### iOS

Add permissions in your relevant `Info.plist` add the following between the `<plist>` tags:

ο»Ώ

## Step 2: Init Taboola

Important note about using 'webview_flutter' with Taboola

  • In case you are using the 'webview_flutter' plugin and its default Platform Views rendering methods, please check if Taboola integration is causing you rendering issues.

  • Taboola Widget requires the Hybrid Composition rendering method and, unfortunately, the 'webview_flutter' plugin requires switching render mode in a global way.

  • Our recommended approaches to this issue: Make sure to create all your WebViews before creating Taboola Widgets. 'webview_flutter' plugin will keep your existing WebViews in their existing render methods and only change Taboola's WebViews to Hybrid Composition."

  1. Import **Taboola** to your project

ο»Ώ
  1. Create a `PublisherInfo` object, passing your **Taboola** Publisher ID:

ο»Ώ

ο»Ώ

`publisherId` - Your **Taboola** Publisher ID.

A unique, alphabetic string, **provided to you by Taboola**.

  1. Execute the `init` function with the `PublisherInfo` object

ο»Ώ

## Step 3: Add Taboola to the build stack

### Import the relevant components

ο»Ώ

### Obtain a TaboolaStandard Instance

  1. Get an instance builder

ο»Ώ

Params

  • `pageUrl` - A public, fully-qualified URL that reflects the current screen's content.

  • `pageType` - The relevant page type, **as provided by Taboola**.

  1. Add the Taboola unit

ο»Ώ

Params

  • `placement` - Your placement param, **as provided by Taboola**

  • `mode` - Your mode param, **as provided by Taboola**.

  • ` isFeed` - Determines which **Taboola** **unit** is returned:

    • Pass `false` to obtain a **limited** `TaboolaWidget` for mid-page _or_ page-bottom.

    • Pass `true` to obtain **an unlimited** `TaboolaFeed` for page-bottom.

  • `TaboolaStandardListener` - You will create the `TaboolaStandardListener` in the next step.

  • `viewID` - A uniue, numeric string (e.g. the current epoch timestamp).

    When adding multiple **Taboola** units to the same screen, pass the same `viewId` for each unit. See: [Multiple Taboola units on a screen](πŸ”—ο»Ώ)ο»Ώ

  • `scrollController` - (_Optional_) Your own ScrollController

    • Pass your own`ScrollController` **when needed**.

    • If you do **not** pass a `ScrollController`, the **Taboola SDK** will create one, and expose it via the unit's `scrollController` property.

    • A _limited_ **Taboola unit** (_aka_ `TaboolaWidget`) does **not** need a custom `ScrollController`.

    • For potential use cases, see the **special cases** in the next callout.

Special cases

For the following special cases, refer to the instructions provided:

  • ο»Ώ[ListView](πŸ”—ο»Ώ)ο»Ώ

  • ο»Ώ[Multiple Taboola units on a screen](πŸ”—ο»Ώ)ο»Ώ

  • ο»Ώ[Nested scrolling](πŸ”—ο»Ώ)ο»Ώ

## Step 4: Set Callbacks

Important!

Make sure to implement the `taboolaDidFailToLoad` method to handle the event of an error or no fill.

Create a `TaboolaStandardListener` object to receive callbacks regarding your TaboolaStandard instance:

ο»Ώ

### `taboolaDidResize`

This callback is called every time Taboola’s web content resizes. Params:

  • Placement: The name of the Taboola Widget.

  • Height: The min. between 1 screen size & current WebView height (wraps around its web content)

### `taboolaDidShow`

  • Placement: The name of the Taboola Widget.

  • General: This is called when Taboola web content starts rendering (on or off screen), treat this more like an onLoadSuccess()

### `taboolaDidFailToLoad`

Called when Taboola failed to display content or timed out. Params:

  • Placement: The name of the Taboola Widget.

  • Error: The error message related.

### `taboolaDidClickOnItem`

This callback will be called when a user clicks on a Taboola item. (String placement, String itemId, String clickUrl, bool organic) Params:

  • Placement: The name of the Taboola Widget.

  • ItemId: The id of the item clicked.

  • ClickUrl: The url of the item clicked.

  • Organic: True if the clicked item is organic, false if it’s sponsored. Return value: This callback also implements logic regarding who handles the user click. If you return true: Taboola will handle the click automatically. If you return false: In case of organic item/article, you will be able to handle the click yourself. Sponsored items will still be handled by Taboola at any case.

**TaboolaStandardListener expects Functions as arguments**

ο»Ώ

## Step 5: Submit your app for review

You're done! When you have finished the integration, contact your account manager and send a debuggable = version of your Android and iOS projects. Reach out to your Taboola contact for more information

## Special Cases

### ListView

Guidelines

When using a `ListView`, we recommened the following guidelines:

  1. Pass **your own** `ScrollController` to **Taboola**.

  2. Use an `AutomaticKeepAliveClientMixin`.

Detailed steps are provided below.

#### Step 1 - Pass **your own** `ScrollController`

  1. Create **your own** `ScrollController` instance:

    ο»Ώ
  2. When **building your `ListView`**, _reference_ your `ScrollController`:

    ο»Ώ
  3. When **building the `TaboolaClassicUnit` instance**, pass your `ScrollController` via the `build`method.:

    ο»Ώ

    ο»Ώ

    See above: [Obtain a TaboolaStandard Instance](πŸ”—ο»Ώ)ο»Ώ

#### Step 2 - Use an `AutomaticKeepAliveClientMixin`

  1. Wrap the `ListView` inside an <a href="https://api.flutter.dev/flutter/widgets/AutomaticKeepAliveClientMixin-mixin.html" target="_blank">`AutomaticKeepAliveClientMixin`</a>.

  2. For a working example, refer to the <a href="<https://github.com/taboola/taboola-flutter-example/blob/main/lib/pages/custom_list_view_page_widget.dart>" target="_blank">sample app</a>.

AutomaticKeepAliveClientMixin

For performance reasons, the `ListView` only renders content that is **visible**.

**By default**, each time the user scrolls up and down, the`ListView` destroys and re-recreates **Taboola** units, causing a **flickering** effect.

To ensure that **Taboola** units are not destroyed while scrolling, wrap the `ListView` in an `AutomaticKeepAliveClientMixin`.

### Multiple Taboola units on a screen

It is possible to add more than one Taboola unit on the same screen such as two widgets or mid article widget and bottom article feed.

To enable this functionality properly:

  1. Set the same viewId value for each TaboolaClassicUnit object before rendering the widget. The viewId value must be a string of digits of maximum 19 characters. We recommend using the current epoch timestamp.

  2. Fetch the content for the second asset only after a response is received for the first asset. Please use the 'taboolaDidShow' callback of the 1st asset to initiate rendering for the 2nd unit.

  3. Pass your own `ViewController`, as described for [ListView](πŸ”—ο»Ώ) (above).

For full implementation details, see our [example app](πŸ”—ο»Ώ).

### Nested scrolling

If you have your own custom ScrollController, please set it in the optional argument when building TaboolaStandard instance

When adding β€œTaboola Feed” into a screen below a scrollable Widget. Taboola’s best-suggested practice is as followed:

  1. Create a CustomScrollView

  2. Set Taboola’s ScrollController as the CustomScrollView’s controller. This will allow Taboola to transfer scrolling between its Feed and your content.

  3. Add your content into a SliverList.

  4. Add your TaboolaStandard instance as a child of a SliverToBoxAdapter. If you have your own custom ScrollController, please set it in the optional argument when building TaboolaStandard instance

Code Samples:

ο»Ώ

ο»Ώ

## GDPR & CCPA

Taboola Flutter plugin can get a direct signal for the current user about the GDPR and CCPA status. Currently, the plugin does not support the IAB CCPA, TCFv1, and TCFv2 frameworks

### GDPR

It is possible to forward the consent status to Taboola plugin on when using a dedicated flag - `cex.` The consent boolean value (in string format) should be passed on each session. By default, the value of this flag is set to "true" - allowing Taboola to use the user's data. Please use the flag only when the end-user is GDPR subject and set it to "true" (user-provided consent), or "false" (user didn't provide consent).

ο»Ώ

### CCPA

It is possible to forward the CCPA "Do Not Sell" (dns) status to Taboola plugin on each time the widget/feed is initialized using a dedicated flag - `cdns`. The value (in string format) should be passed on each session.

  • true - CCPA applies, and the end-user opted-out per CCPA requirements

  • false - CCPA applies, and the end-user didn't opt-out per CCPA requirements

  • none - CCPA does not apply (the default status) By default, the value of this flag is set to none - the end-user is not CCPA subject, allowing Taboola to use the user's data. It is recommended to place these lines alongside the other settings, such as publisher name, etc

ο»Ώ

### Dark Mode

ο»Ώ

Dark mode is **not** supported by default. For dark-mode placements, contact your **Taboola Account Manager**.

Once **Taboola** has configured your dark-mode placements, you can use the following code in your application:

ο»Ώ

## Test drive

You can use the following test parameters for your development efforts

ParameterEndless FeedWidget
PublisherInfo"sdk-tester-demo""sdk-tester-demo"
Placement"Feed without video""Below Widget"
PageURL"<https://blog.taboola.com>""<https://blog.taboola.com>"
PageType"article""article"
TargetType"mix""mix"
Mode"thumbs-feed-01""alternating-widget-without-video-1x4"

## Contact us & Terms

If you wish to integrate the Taboola Flutter package into any commercial applications, please make sure you have a green light from your Taboola contact and from Taboola Product team

Using this Flutter package is subject to [Taboola terms of use](πŸ”—ο»Ώ) and [privacy policy](πŸ”—ο»Ώ)ο»Ώ