feat: up投稿播放全部

This commit is contained in:
guozhigq
2024-11-02 01:51:26 +08:00
parent 3209bde290
commit a69a27cdc4
6 changed files with 126 additions and 19 deletions

View File

@ -135,6 +135,15 @@ class _MemberArchivePageState extends State<MemberArchivePage> {
),
],
),
floatingActionButton: Obx(
() => _memberArchivesController.count > 0
? FloatingActionButton.extended(
onPressed: _memberArchivesController.toViewPlayAll,
label: const Text('播放全部'),
icon: const Icon(Icons.playlist_play),
)
: const SizedBox(),
),
);
}
}