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

A new Flutter plugin for custom text input.

custom_text_input #

TextInputBox Flutter widget enter text functionality.

Features #

  • InputFormatters
  • Width and height
  • max length of character
  • max number of lines
  • style

Getting started #

To use this package, enter text as a dependency in your pubspec.yaml file.

Usage #

Minimal example:

    CustomTextInput(
        controller: nameController,
        hint: "Enter Name"
    )

Custom settings:

     CustomTextInput(
         controller: nameController,
         maxlenth: 200,
         maxLine: 1,
         textsize: 15,
         textInputAction: TextInputAction.done,
         textInputType: TextInputType.text,
         width: MediaQuery.of(context).size.width,
         height: 100,
         icons: Icons.account_box_sharp,
         hint: "Enter Name")
1
likes
110
points
31
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter plugin for custom text input.

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, flutter_screenutil

More

Packages that depend on custom_text_input