DragAndDropSettings constructor

const DragAndDropSettings({
  1. bool allowNavigation = true,
  2. bool allowScroll = true,
  3. bool showTimeIndicator = true,
  4. TextStyle? timeIndicatorStyle,
  5. String indicatorTimeFormat = 'h:mm a',
  6. Duration autoNavigateDelay = const Duration(seconds: 1),
})

Creates a Drag and Drop settings for calendar.

The properties allows to customize the Drag and Drop of SfCalendar.

Implementation

const DragAndDropSettings({
  this.allowNavigation = true,
  this.allowScroll = true,
  this.showTimeIndicator = true,
  this.timeIndicatorStyle,
  this.indicatorTimeFormat = 'h:mm a',
  this.autoNavigateDelay = const Duration(seconds: 1),
});