MediaCarouselWidget class

A Flutter widget that displays a carousel of media (images/videos) with tracking features.

This widget creates a horizontally scrollable carousel of media content from NativeAd objects, with built-in tracking for visibility, video play/pause events, and user interactions.

Example usage:

MediaCarouselWidget(
  nativeAds: listOfNativeAds,
  height: 200,
  width: 300,
  onMediaTracking: (ad, eventType) {
    print('Media event: $eventType for ad: ${ad.name}');
  },
)
Inheritance

Constructors

MediaCarouselWidget({Key? key, required List<NativeAd> nativeAds, required double height, required double width, MediaTrackingCallback? onMediaTracking, bool autoPlayVideos = true, bool showVideoControls = true, EdgeInsetsGeometry? padding, double itemMargin = 10.0})
const

Properties

autoPlayVideos bool
Whether to auto-play videos
final
hashCode int
The hash code for this object.
no setterinherited
height double
Height of each carousel item
final
itemMargin double
Margin between carousel items
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
nativeAds List<NativeAd>
List of NativeAd objects to display in the carousel
final
onMediaTracking MediaTrackingCallback?
Callback for media tracking events
final
padding EdgeInsetsGeometry?
Padding around the carousel
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
showVideoControls bool
Whether to show video controls
final
width double
Width of each carousel item
final

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() State<MediaCarouselWidget>
Creates the mutable state for this widget at a given location in the tree.
override
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, int wrapWidth = 65}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited