DraggerContainer constructor

const DraggerContainer({
  1. Color? backgroundColor,
  2. Color? draggerColor,
  3. Key? key,
})

Creates a dragger inside a container widget.

The DraggerContainer is typically used to provide a UI element that can be dragged by the user, often as part of a custom sheet or panel.

Implementation

const DraggerContainer({
  this.backgroundColor,
  this.draggerColor,
  super.key,
});