CardSettingsPassword constructor

CardSettingsPassword({
  1. Key? key,
  2. String label = 'Password',
  3. String hintText = '',
  4. double? labelWidth,
  5. TextAlign? labelAlign,
  6. TextAlign? contentAlign,
  7. bool contentOnNewLine = false,
  8. String? initialValue,
  9. Icon? icon,
  10. Widget? requiredIndicator,
  11. int maxLength = 20,
  12. bool visible = true,
  13. bool enabled = true,
  14. bool autofocus = false,
  15. bool obscureText = true,
  16. bool autocorrect = false,
  17. AutovalidateMode autovalidateMode = AutovalidateMode.onUserInteraction,
  18. FormFieldValidator<String>? validator,
  19. FormFieldSetter<String>? onSaved,
  20. ValueChanged<String>? onChanged,
  21. TextEditingController? controller,
  22. FocusNode? focusNode,
  23. TextInputAction? inputAction,
  24. FocusNode? inputActionNode,
  25. TextInputType keyboardType = TextInputType.text,
  26. TextStyle? style,
  27. MaxLengthEnforcement? maxLengthEnforcement = MaxLengthEnforcement.enforced,
  28. ValueChanged<String>? onFieldSubmitted,
  29. List<TextInputFormatter>? inputFormatters,
  30. bool? showMaterialonIOS,
  31. EdgeInsetsGeometry? fieldPadding,
})

Implementation

CardSettingsPassword({
  Key? key,
  String label = 'Password',
  String hintText = '',
  double? labelWidth,
  TextAlign? labelAlign,
  TextAlign? contentAlign,
  bool contentOnNewLine = false,
  String? initialValue,
  Icon? icon,
  Widget? requiredIndicator,
  int maxLength = 20,
  bool visible = true,
  bool enabled = true,
  bool autofocus = false,
  bool obscureText = true,
  bool autocorrect = false,
  AutovalidateMode autovalidateMode = AutovalidateMode.onUserInteraction,
  FormFieldValidator<String>? validator,
  FormFieldSetter<String>? onSaved,
  ValueChanged<String>? onChanged,
  TextEditingController? controller,
  FocusNode? focusNode,
  TextInputAction? inputAction,
  FocusNode? inputActionNode,
  TextInputType keyboardType = TextInputType.text,
  TextStyle? style,
  MaxLengthEnforcement? maxLengthEnforcement = MaxLengthEnforcement.enforced,
  ValueChanged<String>? onFieldSubmitted,
  List<TextInputFormatter>? inputFormatters,
  bool? showMaterialonIOS,
  EdgeInsetsGeometry? fieldPadding,
}) : super(
        key: key,
        label: label,
        labelWidth: labelWidth,
        labelAlign: labelAlign,
        hintText: hintText,
        showMaterialonIOS: showMaterialonIOS,
        fieldPadding: fieldPadding,
        contentAlign: contentAlign,
        contentOnNewLine: contentOnNewLine,
        initialValue: initialValue,
        maxLength: maxLength,
        icon: icon,
        requiredIndicator: requiredIndicator,
        visible: visible,
        enabled: enabled,
        autofocus: autofocus,
        obscureText: obscureText,
        autocorrect: autocorrect,
        autovalidateMode: autovalidateMode,
        validator: validator,
        onSaved: onSaved,
        onChanged: onChanged,
        controller: controller,
        focusNode: focusNode,
        inputAction: inputAction,
        inputActionNode: inputActionNode,
        keyboardType: keyboardType,
        style: style,
        maxLengthEnforcement: maxLengthEnforcement,
        onFieldSubmitted: onFieldSubmitted,
        inputFormatters: inputFormatters,
      );