SfPdfViewerThemeData.raw constructor
const
SfPdfViewerThemeData.raw({
- required Brightness? brightness,
- required Color? backgroundColor,
- required Color? progressBarColor,
- required PdfScrollStatusStyle? scrollStatusStyle,
- required PdfScrollHeadStyle? scrollHeadStyle,
- required PdfBookmarkViewStyle? bookmarkViewStyle,
- required PdfPaginationDialogStyle? paginationDialogStyle,
- required PdfHyperlinkDialogStyle? hyperlinkDialogStyle,
- 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,
});