working login
This commit is contained in:
parent
47a758a33b
commit
3fff32f170
7 changed files with 162 additions and 32 deletions
|
|
@ -20,11 +20,13 @@ class FormTextInput extends StatelessWidget {
|
|||
final Widget? trailing;
|
||||
final InputBorder? border;
|
||||
final List<TextInputFormatter>? formatters;
|
||||
final bool autofocus;
|
||||
|
||||
const FormTextInput({
|
||||
super.key,
|
||||
this.border,
|
||||
this.controller,
|
||||
this.autofocus = false,
|
||||
this.title,
|
||||
this.obscure = false,
|
||||
this.readOnly = false,
|
||||
|
|
@ -45,6 +47,7 @@ class FormTextInput extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) => TextFormField(
|
||||
autofocus: autofocus,
|
||||
controller: controller,
|
||||
keyboardType: keyboardType,
|
||||
readOnly: readOnly,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue