Slide 58
Slide 58 text
Rishit Dagli
Still a problem
● Flutter is not good when you try to draw
something out of canvas
● Image can go outside of your canvas
SizedBox(
width: _image.width.toDouble(),
height: _image.height.toDouble(),
child: CustomPaint(
painter: FacePainter(_image, _faces),
),