SfPdfViewerThemeData constructor
SfPdfViewerThemeData({
- Brightness? brightness,
- Color? backgroundColor,
- Color? progressBarColor,
- PdfScrollStatusStyle? scrollStatusStyle,
- PdfScrollHeadStyle? scrollHeadStyle,
- PdfBookmarkViewStyle? bookmarkViewStyle,
- PdfPaginationDialogStyle? paginationDialogStyle,
- PdfPasswordDialogStyle? passwordDialogStyle,
Creating an argument constructor of SfPdfViewerThemeData class.
Implementation
factory SfPdfViewerThemeData(
{Brightness? brightness,
Color? backgroundColor,
Color? progressBarColor,
PdfScrollStatusStyle? scrollStatusStyle,
PdfScrollHeadStyle? scrollHeadStyle,
PdfBookmarkViewStyle? bookmarkViewStyle,
PdfPaginationDialogStyle? paginationDialogStyle,
PdfPasswordDialogStyle? passwordDialogStyle}) {
return SfPdfViewerThemeData.raw(
brightness: brightness,
backgroundColor: backgroundColor,
progressBarColor: progressBarColor,
scrollStatusStyle: scrollStatusStyle,
scrollHeadStyle: scrollHeadStyle,
bookmarkViewStyle: bookmarkViewStyle,
paginationDialogStyle: paginationDialogStyle,
passwordDialogStyle: passwordDialogStyle);
}