jay

Results 9 issues of jay

I added `@pragma('vm:entry-point'). ``` @pragma('vm:entry-point') static void _downloadCallback( String id, DownloadTaskStatus status, int progress) { final SendPort? send = IsolateNameServer.lookupPortByName('downloader_send_port'); send?.send([id, status, progress]); } ``` this my log on a...

bug

- 兼容 Android 29 scope storage - 没找到如何在运行时获取 requestLegacyExternalStorage 的方法,判断方法被系统标为 @Hide,直接一刀切禁用 requestLegacyExternalStorage,>= 29 都使用 scope storage - 保存时增加 文件夹 参数 - 升级 example 适配 android 33

``` @SheetLocalization( //... lineSeparator: '\n', ) class _Strings {} ``` Add lineSeparator for generateFile,because default is CRLF('\r\n'). And fix: ``` LF can't be parse. so `lines.first.subList(1,l)` will RangeError: ``` RangeError...

on 3.19,it will lead some ios crash fix https://github.com/flutter/flutter/issues/148927 There is no need to use Stram, as it will only fire once. when result is FileInfo, it means download success....

App ID: 45db7979-a583-40f3-af2c-c1f566ec2665 **Description** why setted --artifact apk,still build aab? if run `flutter build apk` is ok. **Steps To Reproduce** run ```shell shorebird release android --artifact apk --flutter-version 3.22.3 --...

bug

generator will generate ``` queryParams.getList( 'relationships', const [], ) ``` but getList dosent support default value. full code: ```dart @RoutePage() class AddPalSlipRelationshipPage extends LinjiePage { final List relationships; const AddPalSlipRelationshipPage(...

https://github.com/flutter/flutter/issues/29130

Thank you very much for this library. I have a requirement when using it. Every time a new page is added, I have to manually add `AutoRoute(path: "xxx", page: XXRoute.page)`....