opt: copy dialog

This commit is contained in:
bggRGjQaUbCoE
2024-09-30 11:03:11 +08:00
parent 88084e1f05
commit a3a0591c72

View File

@@ -998,8 +998,12 @@ class MorePanel extends StatelessWidget {
showDialog( showDialog(
context: Get.context!, context: Get.context!,
builder: (context) { builder: (context) {
return AlertDialog( return Dialog(
content: SelectableText(message), child: Padding(
padding:
const EdgeInsets.symmetric(horizontal: 20, vertical: 16),
child: SelectableText(message),
),
); );
}, },
); );