zhao0

Results 5 issues of zhao0

I create a job following the ReadMe guide, set `${gitlabSourceBranch}` to `Branch Specifier`. However, it failed while pulling the source branch. ``` > git -c core.askpass=true fetch --tags --progress ssh://git@***...

视频demo中,手指在屏幕上半部分缓慢下拉时,触发了overscroll https://user-images.githubusercontent.com/7556666/195525206-378ce1da-8719-4c41-85ba-a3771072f197.mp4 环境 Flutter 版本2.10.5 Android设备,iOS没问题 尝试把 https://github.com/fluttercandies/extended_nested_scroll_view/blob/master/lib/src/extended_nested_scroll_view.dart#L1300 ```remainingDelta > 0.0``` 改成 ```remainingDelta > precisionErrorTolerance```,问题不再出现了,不知是否是这里的问题 [demo.zip](https://github.com/fluttercandies/extended_nested_scroll_view/files/9771576/flutter_easy_refresh-3.zip)

https://user-images.githubusercontent.com/7556666/192720495-d7d237c0-6753-4a96-8184-43cb3ce45554.mov As the video show, when the refresh task finished, the header update very slow demo code ``` class NestedScrollViewPage extends StatefulWidget { const NestedScrollViewPage({Key? key}) : super(key: key); @override...

替换`didFinishLaunchingWithOptions`能检查出crash,但是`applicationDidBecomeActive`还是会正常执行,如果`applicationDidBecomeActive`中有代码crash了,那么永远看不到这个alert提示

``` Objective-C /** * 对于代码构建 UI 的项目一般在 didFinishLaunch 方法中初始化 window, * 想在 swizzling 方法中 present alertController 需要自己先初始化 window 并提供一个 rootViewController */ - (void)presentAlertViewController:(UIAlertController *)alertController { if (![self hasStoryboardInfo]) { self.window...