SfPdfViewerThemeData constructor

const SfPdfViewerThemeData({
  1. Color? backgroundColor,
  2. Color? progressBarColor,
  3. PdfScrollStatusStyle? scrollStatusStyle,
  4. PdfScrollHeadStyle? scrollHeadStyle,
  5. PdfBookmarkViewStyle? bookmarkViewStyle,
  6. PdfPaginationDialogStyle? paginationDialogStyle,
  7. PdfHyperlinkDialogStyle? hyperlinkDialogStyle,
  8. PdfPasswordDialogStyle? passwordDialogStyle,
})

Create a SfPdfViewerThemeData given a set of exact values. All the values must be specified.

This will rarely be used directly. It is used by lerp to create intermediate themes based on two themes created with the SfPdfViewerThemeData constructor.

Implementation

const SfPdfViewerThemeData({
  this.backgroundColor,
  this.progressBarColor,
  this.scrollStatusStyle,
  this.scrollHeadStyle,
  this.bookmarkViewStyle,
  this.paginationDialogStyle,
  this.hyperlinkDialogStyle,
  this.passwordDialogStyle,
});