feat: video download

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-11-06 12:12:32 +08:00
parent 976622df89
commit ffd4f9ee73
92 changed files with 4853 additions and 946 deletions

View File

@@ -46,7 +46,7 @@ class _DynTopicPageState extends State<DynTopicPage> with DynMixin {
resizeToAvoidBottomInset: false,
floatingActionButton: FloatingActionButton.extended(
onPressed: () {
if (_controller.accountService.isLogin.value) {
if (_controller.isLogin) {
CreateDynPanel.onCreateDyn(
context,
topic: Pair(
@@ -321,7 +321,7 @@ class _DynTopicPageState extends State<DynTopicPage> with DynMixin {
PopupMenuItem(
child: const Text('举报'),
onTap: () {
if (!_controller.accountService.isLogin.value) {
if (!_controller.isLogin) {
SmartDialog.showToast('账号未登录');
return;
}