feat: 转发内容加上视频标题 issues#63

This commit is contained in:
guozhigq
2023-09-04 11:16:52 +08:00
parent a39f81ac2a
commit 6f84eefbe4
2 changed files with 11 additions and 10 deletions

View File

@ -330,7 +330,8 @@ class VideoIntroController extends GetxController {
// 分享视频
Future actionShareVideo() async {
var result = await Share.share('${HttpString.baseUrl}/video/$bvid')
var result = await Share.share(
'${videoDetail.value.title} - ${HttpString.baseUrl}/video/$bvid')
.whenComplete(() {});
return result;
}