WheelSpinnerThemeData.light constructor

WheelSpinnerThemeData.light()

A default light theme

Implementation

WheelSpinnerThemeData.light()
    : dividerColor = Colors.grey[600],
      dividerCount = 10,
      border = Border.all(
        width: 1,
        style: BorderStyle.solid,
        color: Colors.grey[600]!,
      ),
      gradient = LinearGradient(
        begin: Alignment.topCenter,
        end: Alignment.bottomCenter,
        stops: const [
          0.0,
          defaultShadowOffset,
          1.0 - defaultShadowOffset,
          1.0
        ],
        colors: [
          Colors.grey[350]!,
          Colors.grey[50]!,
          Colors.grey[50]!,
          Colors.grey[350]!
        ],
      ),
      borderRadius = defaultBorderRadius,
      boxDecoration = null,
      color = null;