SfPdfViewerThemeData.raw constructor

const SfPdfViewerThemeData.raw({
  1. required Brightness? brightness,
  2. required Color? backgroundColor,
  3. required Color? progressBarColor,
  4. required PdfScrollStatusStyle? scrollStatusStyle,
  5. required PdfScrollHeadStyle? scrollHeadStyle,
  6. required PdfBookmarkViewStyle? bookmarkViewStyle,
  7. required PdfPaginationDialogStyle? paginationDialogStyle,
  8. required PdfHyperlinkDialogStyle? hyperlinkDialogStyle,
  9. required 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.raw({
  required this.brightness,
  required this.backgroundColor,
  required this.progressBarColor,
  required this.scrollStatusStyle,
  required this.scrollHeadStyle,
  required this.bookmarkViewStyle,
  required this.paginationDialogStyle,
  required this.hyperlinkDialogStyle,
  required this.passwordDialogStyle,
});