This commit is contained in:
zhutao
2025-09-10 10:50:03 +08:00
parent 5f088b19c0
commit 9b3c08dabc

View File

@@ -17,7 +17,7 @@ void showEditDescDialog(
});
return CupertinoAlertDialog(
title: Text("编辑摘要"),
title: Text("Edit summary"),
content: Padding(
padding: EdgeInsets.only(top: 15),
child: Container(
@@ -35,7 +35,7 @@ void showEditDescDialog(
onPressed: () {
context.pop();
},
child: Text('取消'),
child: Text('Cancel'),
),
CupertinoDialogAction(
isDefaultAction: true,
@@ -45,7 +45,7 @@ void showEditDescDialog(
onConfirm(controller.text);
}
},
child: Text('确认'),
child: Text('Save'),
),
],
);