> For the complete documentation index, see [llms.txt](https://docs.firework.com/firework-for-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.firework.com/firework-for-developers/react-native-sdk/integration-guide-v2/ad-support.md).

# Ad Support (React Native)

### **Show or hide the ad badge on the video feed item**

```tsx
<VideoFeed
  style={{ height: 200 }}
  source="discover"
  videoFeedConfiguration={{
    // Indicates if the video feed item shows the ad badge.
    showAdBadge: true, // or false
  }}
/>
```

### **Customize ad badge styles**

```typescript
FireworkSDK.getInstance().setAdBadgeConfiguration({
  badgeTextType: 'ad',
  backgroundColor: '#ff0000',
  textColor: '#000000',
});
```
