Content Cards
The Braze SDK includes a default card feed to get you started with Content Cards. To show the card feed, you can use the braze.launchContentCards()
method. The default card feed included with the Braze SDK will handle all analytics tracking, dismissals, and rendering for a user’s Content Cards.
Customization
You can use these additional methods to build a custom Content Cards Feed within your app by using the following methods available on the plugin public interface:
Method | Description |
---|---|
braze.requestContentCardsRefresh() |
Requests the latest Content Cards from the Braze SDK server. |
braze.logContentCardClicked(contentCard) |
Logs a click for the given Content Card object. |
braze.logContentCardImpression(contentCard) |
Logs an impression for the given Content Card object. |
braze.logContentCardDismissed(contentCard) |
Logs a dismissal for the given Content Card object. |
Content Card data callback
You may set a callback in Dart to receive Braze Content Card data in the Flutter host app.
To set the callback, call braze.setBrazeContentCardsCallback()
from your Flutter app with a function that takes a List<BrazeContentCard>
instance. The BrazeContentCard
object supports a subset of fields available in the native model objects, including description
, title
, image
, url
, extras
, and more.
This callback works with no additional integration required.
-
Create a
NotificationCenter
listener forNSNotification.Name.ABKContentCardsProcessed
events as described in our Content Cards view controller integration article. -
Your
NotificationCenter
callback implementation must callBrazePlugin.processContentCards(contentCards)
.
For an example, see AppDelegate.swift in our sample app.
Replaying the callback for Content Cards
To store any Content Cards triggered before the callback is available and replay them once it is set, add the following entry to the customConfigs
map when intializing the BrazePlugin
:
1
BrazePlugin braze = new BrazePlugin(customConfigs: {replayCallbacksConfigKey: true});
Test displaying sample Content Card
Follow these steps to test a sample Content Card.
- Set an active user in the React application by calling
braze.changeUserId('your-user-id')
method. - Head to Campaigns and follow this guide to create a new Content Card campaign.
- Compose your test Content Card campaign and head over to the Test tab. Add the same
user-id
as the test user and click Send Test. - Tap the push notification and that should launch a Content Card on your device. You may need to refresh your feed for it to display.
For more details on each platform, follow the Android integration or iOS integration guides.