Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-21 11:48:42 +08:00
parent 1efd62803a
commit ac60ac417b
130 changed files with 1631 additions and 2132 deletions

View File

@@ -118,9 +118,7 @@ class _LivePageState extends CommonPageState<LivePage, LiveController>
context: context,
tooltip: '全部标签',
icon: Icons.widgets,
onPressed: () {
Get.to(const LiveAreaPage());
},
onPressed: () => Get.to(const LiveAreaPage()),
),
],
),
@@ -250,9 +248,7 @@ class _LivePageState extends CommonPageState<LivePage, LiveController>
),
const Spacer(),
GestureDetector(
onTap: () {
Get.to(const LiveFollowPage());
},
onTap: () => Get.to(const LiveFollowPage()),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
@@ -289,9 +285,7 @@ class _LivePageState extends CommonPageState<LivePage, LiveController>
return SizedBox(
width: 65,
child: GestureDetector(
onTap: () {
Get.toNamed('/liveRoom?roomid=${item.roomid}');
},
onTap: () => Get.toNamed('/liveRoom?roomid=${item.roomid}'),
onLongPress: () {
Feedback.forLongPress(context);
Get.toNamed('/member?mid=${item.uid}');