I'm using syncfusion_flutter_pdfviewer which has its own 'gesture event handler', and I wanted to detect when a user tap on screen to show/hide some buttons.
The problem is that any touch inside the pdf page isn't detected by GestureDetector
So is there a way to force detect touches inside pdf widget or something??
GestureDetector(
onTap: (){
print('click event');
},
child: Stack(
children: [
PdfViewer(filePath: path, pdfKey: _pdfViewerKey, controller: controller,),
TopBar(title: basename(path)),
],
),
),