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

@@ -122,6 +122,7 @@ class _GroupPanelState extends State<GroupPanel> {
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: <Widget>[
AppBar(
backgroundColor: Colors.transparent,
@@ -139,22 +140,16 @@ class _GroupPanelState extends State<GroupPanel> {
),
Padding(
padding: EdgeInsets.only(
left: 20,
right: 20,
top: 12,
bottom: MediaQuery.viewPaddingOf(context).bottom + 12,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
FilledButton.tonal(
onPressed: onSave,
style: FilledButton.styleFrom(
visualDensity: VisualDensity.compact,
),
child: Obx(() => Text(showDefaultBtn.value ? '保存至默认分组' : '保存')),
),
],
child: FilledButton.tonal(
onPressed: onSave,
style: FilledButton.styleFrom(
visualDensity: VisualDensity.compact,
),
child: Obx(() => Text(showDefaultBtn.value ? '保存至默认分组' : '保存')),
),
),
],