Dan Field
Dan Field
## Description Launch this simple in app webview app on an Android emulator using API 34. It will fail to render once resumed from the background if you run some...
https://docs.flutter.dev/release/breaking-changes/flutter-gradle-plugin-apply Specficially https://github.com/flutter/website/blob/b9d43e2d0c5d6fb0b16e65112cd41acc4f9c58e1/src/release/breaking-changes/flutter-gradle-plugin-apply.md?plain=1#L36 The project I'm working on has no previous values for these. I've tried copying the values from another project that does work and it seems to work,...
There are a few of us who have worked with Google and non-Google teams that have dealt with some "gotchas" around add-to-app, such as how and when to use certain...
In my environment, `java -version` told me I had Java 21. `dart bin/run.dart -t plugin_test` would fail with a message like about unsupported class version 65. Setting $JAVA_HOME to be...
See https://github.com/flutter/flutter/issues/96235#issuecomment-1013562718 Today, we validate UTF-16 by decoding it in `ParagraphBuilder::addText`, and then discard the result. The text is again decoded by SkParagraph, leading to duplicated/wasted work. Needs the following:...
Calling `exit` is not safe in Flutter applications. It results in unpredictable shutdown/destruction of objects and crashes. See e.g. https://github.com/flutter/flutter/issues/142835 Please consider updating your plugin to not call exit.
The size of the pattern is being calculated - it's being done in reference to the root viewbox instead of the destination shape - this will often mean that the...
We can do this for shapes with identical painting properties when - The shapes have no overlap - Any overlap is completely opaque This would have the benefit of safely...
This svg: ``` ``` 
Patterns which only ever tile their image once do not need to create an image shader and can be replaced with a simple draw call.