-
Notifications
You must be signed in to change notification settings - Fork 869
Closed as not planned
Labels
featureNew featureNew featurepdf viewerPDF viewer componentPDF viewer componentuncertainUncertain featureUncertain feature
Description
I want to use the "canShowScrollHead" property in Desktop, but it has an incorrect condition for the desktop that prevents me from hiding it.
---> SinglePageView.dart
Visibility(
visible: widget.pdfViewerController.pageCount > 1 &&
((widget.canShowScrollHead && !kIsDesktop) || kIsDesktop),
child: ScrollHead(
true,
false,
Offset(_scrollHeadPosition, widget.viewportDimension.height),
widget.pdfViewerController,
false,
PdfScrollDirection.horizontal,
widget.isBookmarkViewOpen,
PdfPageLayoutMode.single),
),
),
Visibility(
visible: isScrollHeadDragged && widget.canShowScrollStatus,
child: ScrollStatus(widget.pdfViewerController))
Metadata
Metadata
Assignees
Labels
featureNew featureNew featurepdf viewerPDF viewer componentPDF viewer componentuncertainUncertain featureUncertain feature