PdfBookmarkViewStyle constructor

const PdfBookmarkViewStyle({
  1. Color? backgroundColor,
  2. Color? headerBarColor,
  3. Color? closeIconColor,
  4. Color? backIconColor,
  5. Color? navigationIconColor,
  6. Color? selectionColor,
  7. Color? titleSeparatorColor,
  8. TextStyle? titleTextStyle,
  9. TextStyle? headerTextStyle,
})

Creates a PdfBookmarkViewStyle that's used to configure styles for the bookmark view in SfPdfViewer.

Implementation

const PdfBookmarkViewStyle({
  this.backgroundColor,
  this.headerBarColor,
  this.closeIconColor,
  this.backIconColor,
  this.navigationIconColor,
  this.selectionColor,
  this.titleSeparatorColor,
  this.titleTextStyle,
  this.headerTextStyle,
});