IOSViewConfiguration constructor

const IOSViewConfiguration({
  1. SpreadFitting? spreadFitting,
  2. ThumbnailBarMode? thumbnailBarMode,
  3. bool? showPageLabels,
  4. bool? documentLabelEnabled,
  5. bool? inlineSearch,
  6. bool? showActionNavigationButtons,
  7. bool? allowToolbarTitleChange,
  8. IOSBookmarkIndicatorMode? bookmarkIndicatorMode,
  9. bool? bookmarkIndicatorInteractionEnabled,
  10. List<String>? leftBarButtonItems,
  11. List<String>? rightBarButtonItems,
  12. IOSFileConflictResolution? fileConflictResolution,
})

Creates an IOSViewConfiguration.

All parameters are optional. Omit any parameter to use the Nutrient iOS SDK's built-in default for that option.

Implementation

const IOSViewConfiguration({
  this.spreadFitting,
  this.thumbnailBarMode,
  this.showPageLabels,
  this.documentLabelEnabled,
  this.inlineSearch,
  this.showActionNavigationButtons,
  this.allowToolbarTitleChange,
  this.bookmarkIndicatorMode,
  this.bookmarkIndicatorInteractionEnabled,
  this.leftBarButtonItems,
  this.rightBarButtonItems,
  this.fileConflictResolution,
});