Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-02-26 11:39:56 +08:00
parent 8e99ff1173
commit 41f251ad50
8 changed files with 59 additions and 39 deletions

View File

@@ -559,7 +559,7 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
controller: videoIntroController.expandableCtr,
collapsed: GestureDetector(
onLongPress: () {
feedBack();
Feedback.forLongPress(context);
Utils.copyText(
'${videoDetail.title ?? videoItem['title'] ?? ''}');
},
@@ -567,7 +567,7 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
),
expanded: GestureDetector(
onLongPress: () {
feedBack();
Feedback.forLongPress(context);
Utils.copyText(
'${videoDetail.title ?? videoItem['title'] ?? ''}');
},