PDFViewer constructor
PDFViewer(- {Key key,
- @required PDFDocument document,
- Color indicatorText: Colors.white,
- Color indicatorBackground: Colors.black54,
- bool showIndicator: true,
- bool showPicker: true,
- bool showNavigation: true,
- PDFViewerTooltip tooltip: const PDFViewerTooltip(),
- IndicatorPosition indicatorPosition: IndicatorPosition.topRight}
)
Implementation
PDFViewer(
{Key key,
@required this.document,
this.indicatorText = Colors.white,
this.indicatorBackground = Colors.black54,
this.showIndicator = true,
this.showPicker = true,
this.showNavigation = true,
this.tooltip = const PDFViewerTooltip(),
this.indicatorPosition = IndicatorPosition.topRight})
: super(key: key);