We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 556e53a commit bc9b494Copy full SHA for bc9b494
lib/src/presentation/widgets/sign_in_form.dart
@@ -3,6 +3,11 @@ import 'package:provider/provider.dart';
3
4
import '../../application/auth/sign_in_handler/sign_in_handler_state.dart';
5
6
+/// A wrapper for a standard [Form] widget. It allows the [Form] to respond to
7
+/// error messages if the current email and password fields are not correct.
8
+///
9
+/// Should be used in conjunction with [EmailTextFormField] and
10
+/// [PasswordTextFormField]
11
class SignInForm extends StatelessWidget {
12
const SignInForm({Key key, @required this.child})
13
: assert(child != null),
0 commit comments