feat: create/update/del follow tag

opt: owner follow page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-23 11:12:17 +08:00
parent e212144250
commit 0d27d88719
9 changed files with 405 additions and 87 deletions

View File

@@ -4,7 +4,7 @@ import 'package:get/get.dart';
void showConfirmDialog({
required BuildContext context,
required String title,
String? content,
dynamic content,
required VoidCallback onConfirm,
}) {
showDialog(
@@ -12,7 +12,11 @@ void showConfirmDialog({
builder: (context) {
return AlertDialog(
title: Text(title),
content: content == null ? null : Text(content),
content: content is String
? Text(content)
: content is Widget
? content
: null,
actions: [
TextButton(
onPressed: Get.back,