fix: 二级评论点击报错、一些样式修改

This commit is contained in:
guozhigq
2023-07-27 21:31:28 +08:00
parent ca12be5373
commit f6c8c4f6a8
7 changed files with 30 additions and 25 deletions

View File

@ -148,7 +148,7 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
? Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
GestureDetector(
InkWell(
onTap: () => showIntroDetail(),
child: Row(
children: [
@ -178,23 +178,14 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
return t.highlightColor.withOpacity(0.2);
}),
),
onPressed: () {
showBottomSheet(
context: context,
enableDrag: true,
builder: (BuildContext context) {
return IntroDetail(
videoDetail: widget.videoDetail!);
},
);
},
onPressed: () => showIntroDetail(),
icon: const Icon(Icons.more_horiz),
),
),
],
),
),
GestureDetector(
InkWell(
onTap: () => showIntroDetail(),
child: Row(
children: [