> 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/flutter-sdk/integration-guide-v2/ad-support.md).

# Ad Support (Flutter)

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

```dart
VideoFeed(
  source: VideoFeedSource.discover,
  videoFeedConfiguration: VideoFeedConfiguration(
    showAdBadge: true,
  ),
);
```

### **Customize ad badge styles**

```dart
FireworkSDK.getInstance().adBadgeConfiguration = AdBadgeConfiguration(
  badgeTextType: AdBadgeTextType.ad,
  backgroundColor: "#ff0000",
  textColor: "#000000",
);
```
