I am using RepaintBoundary to take the screenshot of the current widget which is a listView. But it only captures the content which is visi
There is a simple way You need wrap SingleChildScrollView Widget to RepaintBoundary. just wrap your Scrollable widget (or his father) with SingleChildScrollView
SingleChildScrollView( child: RepaintBoundary( key: _globalKey ) )