JsouLiang
JsouLiang
Now we can use DlImageFilter to replace SkImageFilter which can help us to enable some optimizations such as removing saveLayer objects for things like a matrix transform image filter on...
Description: 1. Create a PaintTree during the traversal tree phase, the PaintTree node is the AttributeLayer which set the paint attribute and it needs to `saveLayer` 2. In the DisplayListLayer...
Fix Issue: [98352](https://github.com/flutter/flutter/issues/98352) **In current case is not `cursor selector` but current logic number input is will check the `Selection` range** When the `TextInputType` is `Number`, and you input text,...
请问,你通过自己创建FlutterEngine,然后使用engine创建FlutterViewController之后设置setInitialRoute 能成功设置吗?? FlutterEngine *flutterEngine = [(AppDelegate *)[[UIApplication sharedApplication] delegate] engine]; FlutterViewController* flutterViewController = [[FlutterViewController alloc] initWithEngine:flutterEngine nibName:nil bundle:nil]; [GeneratedPluginRegistrant registerWithRegistry:flutterViewController]; [flutterViewController setInitialRoute:@"route1"];
For this issue: https://github.com/flutter/flutter/issues/109843
` CGFloat distance = CGRectGetMidX(attributes.frame) - self.midX; CGFloat currentAngle = self.maxAngle * distance / self.width / M_PI; .... return attributes; break; ` Could you tell me why are you divide...