text_field_custom_advance 0.0.1 copy "text_field_custom_advance: ^0.0.1" to clipboard
text_field_custom_advance: ^0.0.1 copied to clipboard

Here is the custom text field

Put a short description of the package here that helps potential users know whether this package might be useful for them.

Features #

List what your package can do. Maybe include images, gifs, or videos.

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage #

class CustomField extends StatefulWidget {
  const CustomField({super.key});

  @override
  State<CustomField> createState() => _CustomFieldState();
}

class _CustomFieldState extends State<CustomField> {
  @override
  Widget build(BuildContext context) {
    return                     CustomTextFields(
      hintFontWeight: mediumFontWeight, //labelTextFontSize: 16,
      hintText: yourEmail,
      filled: true,
      hintColor: tertiaryColor,
      controller: _authViewModel.loginEmailController,
      contentPadding: const EdgeInsets.all(16),
      textInputAction: TextInputAction.next,
      focusNode: _authViewModel.loginEmailFocusNode,
      onFieldSubmitted: (p0) {
        FocusScope.of(context)
            .requestFocus(_authViewModel.loginPassFocusNode);
      },
      focusedBorderColor: primaryColor,
      fillColor: Colors.grey.shade300,
    );
  }
}

const like = 'sample';

1
likes
110
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Here is the custom text field

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on text_field_custom_advance