veellv_ads_flutter

Official Flutter package for Veellv Ads.

Authored and maintained by Veellv Engineering. Public support is provided through the repository issue tracker; security reports must follow the root security policy.

dependencies:
  veellv_ads_flutter: ^0.1.0
import 'package:dio/dio.dart';
import 'package:veellv_ads_flutter/veellv_ads_flutter.dart';

final ads = VeellvAdsClient(
  dio: authenticatedDio,
  baseUrl: 'https://api.example.com/api/v1',
  consentProvider: () async => const AdsConsent.contextual(),
);

VeellvAdSlot(
  client: ads,
  placement: AdPlacements.nexusMobileFeedInline,
);

Personalized delivery requires an explicit consent provider. The SDK does not accept locally authored interests, health information, or behavioral segments.

Video playback starts only when the slot is viewable, begins muted, and does not loop unless the approved asset contract explicitly enables looping.

Libraries

veellv_ads_flutter