navigation cleanup

This commit is contained in:
Christien Rioux 2024-04-05 22:03:04 -04:00
parent 5da68b2d94
commit b3e9cbd4f3
32 changed files with 475 additions and 314 deletions

View file

@ -17,7 +17,7 @@ class EnterPasswordDialog extends StatefulWidget {
final String? description;
@override
EnterPasswordDialogState createState() => EnterPasswordDialogState();
State<EnterPasswordDialog> createState() => _EnterPasswordDialogState();
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
@ -28,7 +28,7 @@ class EnterPasswordDialog extends StatefulWidget {
}
}
class EnterPasswordDialogState extends State<EnterPasswordDialog> {
class _EnterPasswordDialogState extends State<EnterPasswordDialog> {
final passwordController = TextEditingController();
final focusNode = FocusNode();
final formKey = GlobalKey<FormState>();