# 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',
});
```
