Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-23 17:45:23 +08:00
parent 0957dfc66e
commit 2220372e4f
43 changed files with 99 additions and 96 deletions

View File

@@ -191,7 +191,7 @@ class _FollowPageState extends State<FollowPage> {
String tagName = item.name!;
showConfirmDialog(
context: context,
title: '编辑分组名称',
title: const Text('编辑分组名称'),
content: TextFormField(
autofocus: true,
initialValue: tagName,
@@ -221,8 +221,8 @@ class _FollowPageState extends State<FollowPage> {
Get.back();
showConfirmDialog(
context: context,
title: '删除分组',
content: '删除后,该分组下的用户依旧保留?',
title: const Text('删除分组'),
content: const Text('删除后,该分组下的用户依旧保留?'),
onConfirm: () => _followController.onDelTag(item.tagid!),
);
},
@@ -242,7 +242,7 @@ class _FollowPageState extends State<FollowPage> {
String tagName = '';
showConfirmDialog(
context: context,
title: '新建分组',
title: const Text('新建分组'),
content: TextFormField(
autofocus: true,
initialValue: tagName,