opt video card

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-26 17:27:01 +08:00
parent 12c13cd25a
commit 20893ef65f
6 changed files with 19 additions and 35 deletions

View File

@@ -168,7 +168,6 @@ class _HotPageState extends CommonPageState<HotPage, HotController>
}
return VideoCardH(
videoItem: response[index],
showPubdate: true,
onRemove: () => controller.loadingState
..value.data!.removeAt(index)
..refresh(),

View File

@@ -78,7 +78,6 @@ class _ZonePageState extends CommonPageState<ZonePage, ZoneController>
if (item is HotVideoItemModel) {
return VideoCardH(
videoItem: item,
showPubdate: true,
onRemove: () => controller.loadingState
..value.data!.removeAt(index)
..refresh(),

View File

@@ -55,7 +55,6 @@ class _SearchAllPanelState
height: 120,
child: VideoCardH(
videoItem: item,
showPubdate: true,
),
),
List<SearchPgcItemModel>() => item.length == 1

View File

@@ -112,7 +112,6 @@ class _SearchVideoPanelState extends CommonSearchPanelState<SearchVideoPanel,
}
return VideoCardH(
videoItem: list[index],
showPubdate: true,
onRemove: () => controller.loadingState
..value.data!.removeAt(index)
..refresh(),

View File

@@ -52,7 +52,6 @@ class _RelatedVideoPanelState extends State<RelatedVideoPanel>
(context, index) {
return VideoCardH(
videoItem: response[index],
showPubdate: true,
onRemove: () => _relatedController.loadingState
..value.data!.removeAt(index)
..refresh(),