WithDraggableWindowWidget constructor

const WithDraggableWindowWidget({
  1. Key? key,
  2. required Widget mainWidget,
  3. Widget? draggableWidget,
  4. double draggableWidgetWidth = 100.0,
  5. double draggableWidgetHeight = 100.0,
  6. Orientation orientation = Orientation.portrait,
})

Implementation

const WithDraggableWindowWidget({
  super.key,
  required this.mainWidget,
  this.draggableWidget,
  this.draggableWidgetWidth = 100.0,
  this.draggableWidgetHeight = 100.0,
  this.orientation = Orientation.portrait,
});