SliderThemeData _getSliderThemeData()

in lib/ui/aliplayer_custom_slider_widget.dart [118:137]


  SliderThemeData _getSliderThemeData() {
    return SliderTheme.of(context).copyWith(
      trackHeight: 2.0,
      thumbShape: widget.isInteractive
          ? const RoundSliderThumbShape(
              enabledThumbRadius: 4.0,
              elevation: 2.0,
            )
          : const RoundSliderThumbShape(
              enabledThumbRadius: 0.0,
              elevation: 0.0,
            ),
      activeTrackColor: Colors.grey,
      inactiveTrackColor: Colors.grey[300],
      thumbColor: widget.isInteractive ? Colors.grey : Colors.transparent,
      overlayColor: widget.isInteractive
          ? Colors.grey[400]?.withAlpha(32)
          : Colors.transparent,
    );
  }