droplet

Results 81 comments of droplet

any news update? I just wonder how to set 'writeTimeout'. Can you help me? ```dart Future _downloadFile( HttpClient client, String url, File saveFile, { Duration readTimeout = const Duration(seconds: 10),...

文档地址发来

晚上弄

以及升级 SDK 了,由于手上木有相应项目测试,只能麻烦你作测试了,记得将测试结果反馈给我,谢谢! ```yaml dependencies: weibo_kit: git: url: https://github.com/rxreader/weibo_kit.git ```

我更新了微博的SDK,你们可以先用 git 方式引入,我目前木有微博项目,需要你们帮忙测试通过了才能发布。 ```yaml dependencies: weibo_kit: git: url: https://github.com/rxreader/weibo_kit.git ```

> dependencies: > weibo_kit: > git: > url: https://github.com/rxreader/weibo_kit.git 这种也不行 将 ref 设置成最新的 commit

以及升级 SDK 了,由于手上木有相应项目测试,只能麻烦你作测试了,记得将测试结果反馈给我,谢谢! ```yaml dependencies: weibo_kit: git: url: https://github.com/rxreader/weibo_kit.git ```

微博SDK和文档写的和狗屎没差别,我今天更新了一下,多图分享直接跪

路径方式分享功能似乎已经跪的妥妥的 ...

搞定了,傻吊微博SDK辣么大的更新居然没个文档,你先用 git 方式引入,没问题后我再发布正式版本 ```dart File file = await DefaultCacheManager().getSingleFile( 'https://www.baidu.com/img/bd_logo1.png?where=super'); if (Platform.isAndroid) { // 仅支持 Context.getExternalFilesDir(null)/Context.getExternalCacheDirs(null) 路径分享 // path_provider.getExternalCacheDirectories(); // path_provider.getExternalStorageDirectory(); final Directory temporaryDir = await path_provider.getTemporaryDirectory(); if (path.isWithin(temporaryDir.parent.path, file.path))...