showDragAndDropButtonsHint property

bool get showDragAndDropButtonsHint

Indicates whether a drag and drop buttons hint should be displayed.

Implementation

bool get showDragAndDropButtonsHint =>
    _settingsRepository
        .applicationSettings
        .value
        ?.showDragAndDropButtonsHint ??
    true;
set showDragAndDropButtonsHint (bool value)

Sets the drag and drop buttons hint indicator to the provided value.

Implementation

set showDragAndDropButtonsHint(bool value) {
  _settingsRepository.setShowDragAndDropButtonsHint(value);
}