31 lines
872 B
Dart
31 lines
872 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:pweb/generated/i18n/app_localizations.dart';
|
|
|
|
|
|
class ResendCodeButton extends StatelessWidget {
|
|
const ResendCodeButton({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final localizations = AppLocalizations.of(context)!;
|
|
|
|
return TextButton(
|
|
onPressed: () {
|
|
// TODO: Add resend logic
|
|
},
|
|
style: TextButton.styleFrom(
|
|
padding: EdgeInsets.zero,
|
|
minimumSize: const Size(0, 0),
|
|
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
alignment: Alignment.centerLeft,
|
|
foregroundColor: theme.colorScheme.primary,
|
|
textStyle: theme.textTheme.bodyMedium?.copyWith(
|
|
decoration: TextDecoration.underline,
|
|
),
|
|
),
|
|
child: Text(localizations.twoFactorResend),
|
|
);
|
|
}
|
|
} |