2022-09-20 16:32:46 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../dialog/alert_dialog.dart';
|
|
|
|
|
|
|
|
class Resend extends StatefulWidget {
|
|
|
|
const Resend({super.key});
|
|
|
|
|
|
|
|
@override
|
2022-09-21 14:58:46 +02:00
|
|
|
ConfirmationState createState() => ConfirmationState();
|
2022-09-20 16:32:46 +02:00
|
|
|
}
|
|
|
|
|
2022-09-21 14:58:46 +02:00
|
|
|
class ConfirmationState extends State<Resend> {
|
2022-09-20 16:32:46 +02:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) => AppShellAlertDialog.singleButton(
|
|
|
|
title: 'login_resend_email.dialog.text.title',
|
|
|
|
body: 'login_resend_email.dialog.text.body',
|
|
|
|
buttonText: 'login_resend_email.dialog.button.ok',
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|