Questions tagged [dart-ui]
18 questions
0
votes
0 answers
Flutter: draw over image with CustomPainter with DrawnLines
A part of an application I am working on involves editing photos. I am attempting to include an option to draw on an image. I can not find any examples of how to do this on Github or with the documentation.
This is what I have so Far:
class Sketcher…

RyanBuss01
- 203
- 1
- 11
0
votes
0 answers
Extension method on a class without a constructor in dart?
I've written extension methods on lots of dart stuff, but when I tried to do it FontWeight from dart:ui it isn't recognized as legit.
extension FontWeightExtension on FontWeight {
static const FontWeight thin = FontWeight.w100;
static const…

MetaStack
- 3,266
- 4
- 30
- 67
0
votes
1 answer
Fitting Image inside a circle using canvas flutter
final ui.PictureRecorder pictureRecorder = ui.PictureRecorder();
final Canvas canvas = Canvas(pictureRecorder);
final Paint paint = Paint()..color;
final double radius = size / 2;
final Path clipPath =…

NoctisLupus27
- 71
- 1
- 7