Skip to content

Instantly share code, notes, and snippets.

@jtmuller5
Created April 29, 2021 12:21
Show Gist options
  • Select an option

  • Save jtmuller5/0c78cbd5c39188cd06f465ca139abaf7 to your computer and use it in GitHub Desktop.

Select an option

Save jtmuller5/0c78cbd5c39188cd06f465ca139abaf7 to your computer and use it in GitHub Desktop.
class BodyCanvas extends ViewModelWidget<BodySelectorViewModel> {
@override
Widget build(BuildContext context, BodySelectorViewModel model) {
return CanvasTouchDetector(
builder: (context) => CustomPaint(
painter: BodyPainter(
context: context,
model: model,
),
),
);
}
}
@rajesh2701

Copy link
Copy Markdown

Please, share the project I am struck with some steps. I am learning Flutter.

@admiralato

Copy link
Copy Markdown

Hi Joseph,

First of all, great work! Second, would you be so kind to share this project? I'm currently new to flutter and would need to build a similar feature into the app I am building.

Would appreciate the help!

Thanks, Admiral

Hi Joseph,

Was able to get the idea and was able to make it work just now. Thanks for sharing your code in a way that you leave space for the developer to use his/her brain.

Coding with you,
Admiral

@rajesh2701

Copy link
Copy Markdown

Hi Joseph,
First of all, great work! Second, would you be so kind to share this project? I'm currently new to flutter and would need to build a similar feature into the app I am building.
Would appreciate the help!
Thanks, Admiral

Hi Joseph,

Was able to get the idea and was able to make it work just now. Thanks for sharing your code in a way that you leave space for the developer to use his/her brain.

Coding with you, Admiral

I am unable to work on the code. Can yoy please share the code, so that I can learn more and improve more.

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment