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(
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),
),
);
},
);