-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#60) adiciona view e viewModel para o recoverAccount
Co-authored-by: MarinaGaldi <marina.agostini.galdi@gmail.com>
- Loading branch information
1 parent
5ff0185
commit 4a9c766
Showing
3 changed files
with
70 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,63 @@ | ||
import 'package:aranduapp/ui/recover_account/viewModel/recoverAccountViewModel.dart'; | ||
import 'package:aranduapp/ui/shared/TextAndLink.dart'; | ||
import 'package:aranduapp/ui/shared/TextEmail.dart'; | ||
import 'package:aranduapp/ui/shared/TitleSlogan.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:provider/provider.dart'; | ||
|
||
class RecoverAccount extends StatelessWidget{ | ||
const RecoverAccount({super.key}); | ||
|
||
class RecoverAccount extends StatelessWidget { | ||
@override | ||
Widget build(BuildContext context) { | ||
// TODO: implement build | ||
throw UnimplementedError(); | ||
return Scaffold( | ||
body: ChangeNotifierProvider( | ||
create: (context) => RecoverAccountViewModel(context), | ||
child: page(context), | ||
)); | ||
} | ||
|
||
Widget page(BuildContext context) { | ||
RecoverAccountViewModel viewModel = | ||
Provider.of<RecoverAccountViewModel>(context); | ||
|
||
return SingleChildScrollView( | ||
child: Center( | ||
child: Column( | ||
children: <Widget>[ | ||
const SizedBox(height: 80), | ||
const TitleSlogan(), | ||
const Padding( | ||
padding: EdgeInsets.only(top: 70, left: 20, right: 20), | ||
child: Text( | ||
'Coloque o seu e-mail no campo abaixo e clique em enviar. Logo em seguida, você receberá no seu e-mail as instruções para trocar a sua senha.', | ||
), | ||
), | ||
Form( | ||
key: viewModel.formKey, | ||
child: Column(children: <Widget>[ | ||
TextEmail( | ||
padding: | ||
const EdgeInsets.only(top: 24, left: 20, right: 20), | ||
controller: viewModel.emailController), | ||
])), | ||
Padding( | ||
padding: const EdgeInsets.only(top: 80), | ||
child: SizedBox( | ||
width: 291, | ||
height: 64, | ||
child: ElevatedButton( | ||
onPressed: () {}, child: const Text('Enviar')), | ||
), | ||
), | ||
TextAndLink( | ||
text: 'Já tem uma conta?', | ||
link: ' Click aqui', | ||
action: () { | ||
Navigator.of(context).pop(); | ||
}, | ||
) | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
lib/ui/recover_account/viewModel/recoverAccountViewModel.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class RecoverAccountViewModel extends ChangeNotifier { | ||
final BuildContext context; | ||
|
||
final formKey; | ||
|
||
final emailController; | ||
|
||
RecoverAccountViewModel(this.context) | ||
: formKey = GlobalKey<FormState>(), | ||
emailController = TextEditingController(); | ||
} |