Closed theRightHooprod closed 3 months ago
I just noticed there is a minor typo in the README.md
's example for the CaptureWrapper
.
The correct example would be the following:
CaptureWrapper(
key: const Key('someUniqueCustomPaintKey'),
child: CustomPaint(
size: const Size(300, 300),
painter: SomePainter(),
),
)
This should fix the issue, I'd guess :)
Closed by #84. Feel free to ask further questions and/or reopen the issue if needed.
My flutter code can't seems to find this widget.