[mob][photos] Remove method that would never be used

This commit is contained in:
ashilkn
2024-10-21 17:39:32 +05:30
parent f03cb6e9f1
commit 04b4b6cbd1

View File

@@ -13,9 +13,7 @@ import 'package:photos/ui/components/buttons/button_widget.dart';
import 'package:photos/ui/components/models/button_type.dart';
import 'package:photos/utils/crypto_util.dart';
import 'package:photos/utils/dialog_util.dart';
import 'package:photos/utils/email_util.dart';
import "package:photos/utils/toast_util.dart";
import "package:styled_text/styled_text.dart";
class DeleteAccountPage extends StatefulWidget {
const DeleteAccountPage({
@@ -256,8 +254,6 @@ class _DeleteAccountPageState extends State<DeleteAccountPage> {
}
if (deleteChallengeResponse.allowDelete) {
await _delete(context, deleteChallengeResponse);
} else {
await _requestEmailForDeletion(context);
}
},
isDismissible: false,
@@ -293,65 +289,4 @@ class _DeleteAccountPageState extends State<DeleteAccountPage> {
await showGenericErrorDialog(context: context, error: e);
}
}
Future<void> _requestEmailForDeletion(BuildContext context) async {
final AlertDialog alert = AlertDialog(
title: Text(
S.of(context).deleteAccount,
style: const TextStyle(
color: Colors.red,
),
),
content: StyledText(
text:
"${S.of(context).deleteEmailRequest}\n\n${S.of(context).deleteRequestSLAText}",
tags: {
'warning': StyledTextTag(
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.orange[300],
),
),
},
),
actions: [
TextButton(
child: Text(
S.of(context).sendEmail,
style: const TextStyle(
color: Colors.red,
),
),
onPressed: () async {
Navigator.of(context, rootNavigator: true).pop('dialog');
await sendEmail(
context,
to: 'account-deletion@ente.io',
subject: '[${S.of(context).deleteAccount}]',
);
},
),
TextButton(
child: Text(
S.of(context).ok,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface,
),
),
onPressed: () {
Navigator.of(context, rootNavigator: true).pop('dialog');
},
),
],
);
// ignore: unawaited_futures
showDialog(
useRootNavigator: false,
context: context,
builder: (BuildContext context) {
return alert;
},
);
}
}