activeGreenBox method
Wraps the widget in a ColoredBox with active green color.
Uses CupertinoColors.activeGreen which is a more vibrant green typically used for active states, selected items, or call-to-action elements.
Returns a ColoredBox containing the current widget with active green background.
Example:
Text('Active').activeGreenBox()
Implementation
ColoredBox activeGreenBox() => coloredBox(CupertinoColors.activeGreen);