From a3a0591c72c08e1709e112a14acd8b19a23ff957 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Mon, 30 Sep 2024 11:03:11 +0800 Subject: [PATCH] opt: copy dialog --- lib/pages/video/detail/reply/widgets/reply_item.dart | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/pages/video/detail/reply/widgets/reply_item.dart b/lib/pages/video/detail/reply/widgets/reply_item.dart index 5007afaaa..029dca418 100644 --- a/lib/pages/video/detail/reply/widgets/reply_item.dart +++ b/lib/pages/video/detail/reply/widgets/reply_item.dart @@ -998,8 +998,12 @@ class MorePanel extends StatelessWidget { showDialog( context: Get.context!, builder: (context) { - return AlertDialog( - content: SelectableText(message), + return Dialog( + child: Padding( + padding: + const EdgeInsets.symmetric(horizontal: 20, vertical: 16), + child: SelectableText(message), + ), ); }, );