This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BodyCanvas extends ViewModelWidget<BodySelectorViewModel> { | |
@override | |
Widget build(BuildContext context, BodySelectorViewModel model) { | |
return CanvasTouchDetector( | |
builder: (context) => CustomPaint( | |
painter: BodyPainter( | |
context: context, | |
model: model, | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Joseph,
I hope you are fine today.
Could you please share this project? I am working on a project similar, just that there are some steps I don't get clear. I really appreciate your help.
Thank you,
Masibulele