mirror of
https://github.com/Iconica-Development/flutter_login_widget.git
synced 2025-05-19 13:43:44 +02:00
27 lines
670 B
Dart
27 lines
670 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import '../dialog/alert_dialog.dart';
|
||
|
|
||
|
class Resend extends StatefulWidget {
|
||
|
const Resend({super.key});
|
||
|
|
||
|
@override
|
||
|
_ConfirmationState createState() => _ConfirmationState();
|
||
|
}
|
||
|
|
||
|
class _ConfirmationState extends State<Resend> {
|
||
|
@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();
|
||
|
},
|
||
|
);
|
||
|
}
|