Dan Field

Results 56 issues of 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...

bug

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,...

p2-medium
e2-days
st.triage.ltw
target.Android
a.rn.breaking-changes

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...

d.enhancement
p2-medium
e2-days
st.triage.ltw
t.add-to-app

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...

a: tests
platform-android
tool
team-tool

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:...

framework
engine
c: performance
d: api docs
perf: speed
P1
team-engine
triaged-engine

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: ``` ``` ![image](https://user-images.githubusercontent.com/8620741/193667548-4cbef805-be3a-43bd-926b-b92984af9966.png)

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.