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

@@ -420,21 +420,18 @@ class _LiveRoomPageState extends State<LiveRoomPage>
actions: [
IconButton(
tooltip: '刷新',
onPressed: () {
_futureBuilderFuture = _liveRoomController.queryLiveInfo();
},
onPressed: () =>
_futureBuilderFuture = _liveRoomController.queryLiveInfo(),
icon: const Icon(Icons.refresh),
),
PopupMenuButton(
icon: const Icon(Icons.more_vert, size: 19),
itemBuilder: (BuildContext context) => <PopupMenuEntry>[
PopupMenuItem(
onTap: () {
PageUtils.inAppWebview(
'https://live.bilibili.com/h5/${_liveRoomController.roomId}',
off: true,
);
},
onTap: () => PageUtils.inAppWebview(
'https://live.bilibili.com/h5/${_liveRoomController.roomId}',
off: true,
),
child: const Row(
mainAxisSize: MainAxisSize.min,
children: [
@@ -590,9 +587,7 @@ class _LiveRoomPageState extends State<LiveRoomPage>
),
),
IconButton(
onPressed: () {
onSendDanmaku(true);
},
onPressed: () => onSendDanmaku(true),
icon: Icon(Icons.emoji_emotions_outlined, color: _color),
),
],