How to add a double tap gesture to video player without loosing the focus of controls?

Issue I tried it by wrapping the return ClipRRect( borderRadius: BorderRadius.circular(30.0), child: Chewie( controller: _chewieController, ) with return Stack( children: [ ClipRRect( borderRadius: BorderRadius.circular(30.0), child: Chewie( controller: _chewieController, ), ), Positioned.fill(child: GestureDetector( onDoubleTap: (){ print(‘its double tapped ‘); }, child:

Continue reading