Ian Hickson
Ian Hickson
(tests are failing because I haven't landed the engine part yet)
PR updated per comments, thanks for the reviews!
Landed fixes for the dev/bots/test tests.
This depends on https://github.com/flutter/engine/pull/35146 rolling into the framework.
Now blocked on https://github.com/flutter/engine/pull/35235
Weird that the "Graphics" memory is going down over the same period, are we just assigning it differently over time somehow? The total amount of usage seems stable on that...
Profile: https://github.com/timsneath/cupabox/blob/main/profiles/dart_devtools_2021_3_25-1616718725267000.json
This reproduces the issue; toggling `visible` to true the first time causes raster thread jank. ```dart import 'package:flutter/cupertino.dart'; class CupertinoDialogTest extends StatelessWidget { CupertinoDialogTest({ Key? key, required this.visible }) :...
Would it make more sense to expose the entire Paint? For example, what if someone wants to adjust the gradient rather than the end cap? Or the stroke width? cc...
Well, generally when we expose a color, gradient, or width we don't do it in a way that directly translates to a paint, but I agree that exposing a paint...