mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
@@ -107,7 +107,7 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
|
|||||||
? null
|
? null
|
||||||
: _videoReplyController.scrollController,
|
: _videoReplyController.scrollController,
|
||||||
physics: widget.needController == false
|
physics: widget.needController == false
|
||||||
? const NeverScrollableScrollPhysics(
|
? const AlwaysScrollableScrollPhysics(
|
||||||
parent: ClampingScrollPhysics(),
|
parent: ClampingScrollPhysics(),
|
||||||
)
|
)
|
||||||
: const AlwaysScrollableScrollPhysics(),
|
: const AlwaysScrollableScrollPhysics(),
|
||||||
|
|||||||
@@ -1804,11 +1804,7 @@ class _VideoDetailPageVState extends State<VideoDetailPageV>
|
|||||||
child: CustomScrollView(
|
child: CustomScrollView(
|
||||||
key: const PageStorageKey<String>('简介'),
|
key: const PageStorageKey<String>('简介'),
|
||||||
controller: needCtr ? _introController : null,
|
controller: needCtr ? _introController : null,
|
||||||
physics: needCtr.not
|
physics: needCtr.not ? const ClampingScrollPhysics() : null,
|
||||||
? const NeverScrollableScrollPhysics(
|
|
||||||
parent: ClampingScrollPhysics(),
|
|
||||||
)
|
|
||||||
: null,
|
|
||||||
slivers: [
|
slivers: [
|
||||||
if (videoDetailController.videoType == SearchType.video) ...[
|
if (videoDetailController.videoType == SearchType.video) ...[
|
||||||
VideoIntroPanel(
|
VideoIntroPanel(
|
||||||
|
|||||||
Reference in New Issue
Block a user