screenshot icon indicating copy to clipboard operation
screenshot copied to clipboard

Flutter 2.9.0-0.1.pre problem

Open meeximum opened this issue 3 years ago • 0 comments

Hi,

I had a widget

                        Screenshot(
                          controller: _screenshotController,
                          child: Stack(children: [
                            Image.memory(_data!, fit: BoxFit.cover, width: 1000.0),                           
                            CustomPaint(painter: DrawingPainter(context, _points, _normStart, _normEnd)),
                          ]),
                        ),

which worked with an older flutter release (2.8.1)! In the newest one it only shows the CustomPaint but not the Image?

BR Meex

meeximum avatar Jan 03 '22 18:01 meeximum