feat: clean fav

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-01-27 13:26:31 +08:00
parent caee40a5d9
commit 1d8e469a46
35 changed files with 148 additions and 107 deletions

View File

@@ -1662,10 +1662,7 @@ class VideoDetailController extends GetxController
showDialog(
context: context,
builder: (context) => AlertDialog(
title: const Text(
'确定无误再提交',
style: TextStyle(fontSize: 18),
),
title: const Text('确定无误再提交'),
actions: [
TextButton(
onPressed: Get.back,

View File

@@ -56,7 +56,7 @@ class _FavPanelState extends State<FavPanel> {
onPressed: Get.back,
icon: const Icon(Icons.close_outlined),
),
title: Text('添加到收藏夹'),
title: const Text('添加到收藏夹'),
actions: [
TextButton.icon(
onPressed: () {

View File

@@ -94,7 +94,7 @@ class _GroupPanelState extends State<GroupPanel> {
tooltip: '关闭',
onPressed: Get.back,
icon: const Icon(Icons.close_outlined)),
title: Text('设置关注分组'),
title: const Text('设置关注分组'),
),
Expanded(
child: Material(

View File

@@ -1826,7 +1826,7 @@ class _VideoDetailPageState extends State<VideoDetailPage>
appBar: AppBar(
automaticallyImplyLeading: false,
titleSpacing: 16,
title: Text('分段信息'),
title: const Text('分段信息'),
actions: [
Text(
'分段进度条',

View File

@@ -659,10 +659,7 @@ class _HeaderControlState extends State<HeaderControl> {
builder: (context) {
String duration = '';
return AlertDialog(
title: Text(
'自定义时长',
style: TextStyle(fontSize: 18),
),
title: const Text('自定义时长'),
content: TextField(
autofocus: true,
onChanged: (value) => duration = value,