showDragAndDropButtonsHint property
Indicates whether a drag and drop buttons hint should be displayed.
Implementation
bool get showDragAndDropButtonsHint =>
_settingsRepository
.applicationSettings
.value
?.showDragAndDropButtonsHint ??
true;
Sets the drag and drop buttons hint indicator to the provided value
.
Implementation
set showDragAndDropButtonsHint(bool value) {
_settingsRepository.setShowDragAndDropButtonsHint(value);
}