ebwood
ebwood
Any solution? Still not working. [tmdb.svg](https://www.themoviedb.org/assets/2/v4/logos/v2/blue_square_1-5bdc75aaebeb75dc7ae79426ddd9be3b2be1e342510f8202baf6bffa71d7f5c4.svg)
The url you provide return the mimetype of xlsx instead of the mimetype of pdf in the header field content-type. Either you can make the backend to return the correct...
Oh sorry for my fault response. A solution is to send correct content-type. After digging into the android source code, in the DownloadWorker.java file [line 398](https://github.com/fluttercommunity/flutter_downloader/blob/1df1d4347fdda50ecb618066a7c19b958218ab65/android/src/main/java/vn/hunghd/flutterdownloader/DownloadWorker.java#L398), when your android device...
Create unique locale file with the remote file name: [gist](https://gist.github.com/58467c8bd16159ed63d79d400e28f1e9.git) ```dart import 'dart:io'; import 'package:path/path.dart' as path; class FileUtil { static File getUniqueFile(String folderName, final String? fileName) { int num...
库的yaml文件里设置了platform:2.0.0,但是现在的null-safety属性需要dart-3.0,所以冲突。作者有把null-safety功能提上日程吗? @raoxudong
duplicate #202
I am developing on mac. Flutter 3.0.5 with dart 2.17.6 is ok, but since flutter 3.3.0 with dart 2.18.0 and flutter 3.3.1 with dart 2.18.0 all cause the same problem:...
It seems official flutter and dart reproduce the problem: [flutter](https://github.com/flutter/flutter/issues/111243) [dart](https://github.com/dart-lang/sdk/issues/49936)
> so sho > > > It seems official flutter and dart reproduce the problem: [flutter](https://github.com/flutter/flutter/issues/111243) [dart](https://github.com/dart-lang/sdk/issues/49936) > > so should we wait for the next update to roll out...
After re-reading the [document](https://github.com/fluttercommunity/flutter_downloader#update-download-progress): ``` @pragma('vm:entry-point') must be placed above the callback function to avoid tree shaking in release mode for Android. ``` This will solve your problem of [Dart...