activeBlueBox method

ColoredBox activeBlueBox()

Wraps the widget in a ColoredBox with active blue color.

Uses CupertinoColors.activeBlue which is a more vibrant blue typically used for active states, pressed buttons, or highlighted elements.

Returns a ColoredBox containing the current widget with active blue background.

Example:

CupertinoButton(child: Text('Press Me')).activeBlueBox()

Implementation

ColoredBox activeBlueBox() => coloredBox(CupertinoColors.activeBlue);