-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat#59/tela de edit profile #23
Conversation
@R1K4S, está faltando algumas coisas. O código não está compilando. Você não está seguindo o padrão MVVM. Tome cuidado com métodos muito grandes. O construtor de EditProfile tem quase 200 linhas quebre ele em widgets menores. |
import 'package:aranduapp/ui/shared/CustomTextField.dart'; | ||
import 'package:aranduapp/ui/shared/TextPassword.dart'; | ||
|
||
class EditProfile extends StatelessWidget { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
O MVVM não está implementado nesta classe
EditProfile({Key? key}) : super(key: key); | ||
|
||
@override | ||
Widget build(BuildContext context) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Esse construtor está muito grande quebre ele em widgets menores
Beleza |
lib/ui/shared/CustomTextField.dart
Outdated
final String label; | ||
final String? placeholder; | ||
final TextEditingController? controller; | ||
final bool obscureText; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
O MVVM não está implementado nessa classe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.
a1d60a5
to
125d664
Compare
125d664
to
b8a0d84
Compare
[QA] adding sonarcloud workflow (fga-eps-mds/2024.2-ARANDU-DOC#23)
[FIX] fixing script to generate metrics (fga-eps-mds/2024.2-ARANDU-DOC#23)
[FEATURE] Criação da tela EditProfile (#59)
Descrição
Este pull request adiciona classes e pastas que envolvam a parte de Gerenciamento do Usuário,como EditProfile que se encontra a tela de alteração de informações do Usuário,criação do componente CustomFieldText para criar placeholder,criação do componente de ProfileCard que seria apresentação do usuário conforme previsto na issue #59.
Revisão
Checklist