mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-27 22:10:14 +08:00
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user