AndroidViewConfiguration constructor

const AndroidViewConfiguration({
  1. bool? grayScale,
  2. AppearanceMode? appearanceMode,
  3. ThumbnailBarMode? thumbnailBarMode,
  4. bool? showPageLabels,
  5. bool? documentLabelEnabled,
  6. bool? inlineSearch,
  7. bool? showActionNavigationButtons,
  8. bool? showSearchAction,
  9. bool? showOutlineAction,
  10. bool? showBookmarksAction,
  11. bool? showAnnotationListAction,
  12. bool? showThumbnailGridAction,
  13. bool? showPrintAction,
  14. bool? enableDocumentEditor,
  15. bool? contentEditorEnabled,
  16. String? darkThemeResource,
  17. String? defaultThemeResource,
})

Creates an AndroidViewConfiguration.

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

Implementation

const AndroidViewConfiguration({
  this.grayScale,
  this.appearanceMode,
  this.thumbnailBarMode,
  this.showPageLabels,
  this.documentLabelEnabled,
  this.inlineSearch,
  this.showActionNavigationButtons,
  this.showSearchAction,
  this.showOutlineAction,
  this.showBookmarksAction,
  this.showAnnotationListAction,
  this.showThumbnailGridAction,
  this.showPrintAction,
  this.enableDocumentEditor,
  this.contentEditorEnabled,
  this.darkThemeResource,
  this.defaultThemeResource,
});