2022-04-29 09:10:21 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-05-16 02:51:47 +02:00
|
|
|
|
2023-09-22 09:29:07 +02:00
|
|
|
import 'package:nekoya_app/components/forgot_pass_body.dart';
|
2022-04-29 09:10:21 +02:00
|
|
|
|
|
|
|
class ForgotPassword extends StatefulWidget {
|
|
|
|
const ForgotPassword({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<ForgotPassword> createState() => _ForgotPasswordState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ForgotPasswordState extends State<ForgotPassword> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
backgroundColor: const Color(0xff1b1c1e),
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('Forgot Password'),
|
|
|
|
centerTitle: true,
|
|
|
|
backgroundColor: const Color(0xff212226),
|
|
|
|
),
|
|
|
|
body: const ForgotPassBody(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|