Dan Field
Dan Field
This code causes a segfault currently: ```dart test('use canvas after endRecording', () { final PictureRecorder recorder = PictureRecorder(); final Canvas canvas = Canvas(recorder); final Picture picture = recorder.endRecording(); canvas.restore(); });...
Take this sample: ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); static const String _title = 'Flutter Code Sample';...
...or perhaps provide a new library that does so. Context: Flutter users are concerned about the added size of including a networking stack that they may not want to use...
I'm primarily concerned about this for Flutter, where I can't use `dart:mirrors`. As a library author, I would like to be able to publish code that conditionally uses new functionality...
See some context at https://github.com/flutter/flutter/pull/61209 Turning on that setting (`I` in the terminal - not available through IDEs yet), you can see that most images will get inverted/flipped. I haven't...
Right now, an error is reported if you try to use a file that does something like the following: ```svg ... ``` This is done to make sure we don't...
Basic text support is achievable: - [x] Basic support for rendering text with a fill property (or, if text only has stroke property, treating the stroke as a fill) -...
Make it easier for developers to see how long SVG parsing is taking. /cc @jiahaog
E.g. ```svg ``` No longer renders correctly after #306 Unfortunately there was no test covering this. /cc @pento