GoogleCastMiniController class
A floating mini controller widget for Google Cast media playback.
This widget provides a beautiful, floating mini controller that displays:
- Media artwork with rounded corners and shadows
- Media title and casting device information
- Play/pause controls with theme-aware styling
- A sleek progress indicator
The widget consumes and respects the ExpandedGoogleCastPlayerTheme
for consistent styling.
Example usage:
GoogleCastMiniController(
theme: ExpandedGoogleCastPlayerTheme(
backgroundColor: Colors.white,
titleTextStyle: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: Colors.black,
),
deviceTextStyle: TextStyle(
fontSize: 12,
color: Colors.grey[600],
),
iconColor: Colors.blue,
iconSize: 28,
imageBorderRadius: BorderRadius.circular(12),
imageShadow: [
BoxShadow(
color: Colors.black26,
blurRadius: 8,
offset: Offset(0, 2),
),
],
),
margin: EdgeInsets.all(16),
borderRadius: BorderRadius.circular(16),
showDeviceName: true,
)
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatefulWidget
- GoogleCastMiniController
Constructors
- GoogleCastMiniController.new({Key? key, GoogleCastPlayerTheme? theme, EdgeInsets? margin, BorderRadius? borderRadius, bool showDeviceName = true})
-
Creates a new GoogleCastMiniController.
const
Properties
- borderRadius → BorderRadius?
-
Custom border radius for the mini controller
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- margin → EdgeInsets?
-
Custom margin for the mini controller
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- showDeviceName → bool
-
Whether to show the device name
final
- theme → GoogleCastPlayerTheme?
-
Theme configuration for customizing the visual appearance
final
Methods
-
createElement(
) → StatefulElement -
Creates a StatefulElement to manage this widget's location in the tree.
inherited
-
createState(
) → State< GoogleCastMiniController> -
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