how to scroll pdf in tabview with nestedScrollview - flutter

133 Views Asked by At

I'm using flutter_cached_pdfview can't scroll the pdf in tabview But scrollable without tabview Used controller but can't scroll in tabview

Want to scroll pdf in tabview with NestedScroolView

1

There are 1 best solutions below

0
Robin Hood On

Reference

Stack(
  children :[
    SfPdfViewer.asset(pdfAsset,
      controller: _pdfController,
    ),
    GestureDetector(
      onTap: (){
         setState(() {
           menuBarVisible = !menuBarVisible;
         });
      },
      child: Container()
    ),
  ]
),