vikram25897 / fluttter_responsive_text_field

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

responsive_text_field

A Flutter plugin to create ResponsiveTextField that auto resizes itself based on the input. It will increase its maxLines when the text overflows and decreases its maxLines when the text underflow.

Note: Provide a well calculated width to the widget after subtracting all the paddings and margins for it to work as expected.

Example

You can just use it the same way you would use a TextField with just four required parameters:

  • minLines
  • maxLines
  • style
  • availableWidth

Like the example below:

class Home extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: ResponsiveTextField(
        availableWidth: MediaQuery.of(context).size.width,
        minLines: 1,
        maxLines: 5,
        style: TextStyle(
          fontSize: 16
        ),
      ),
    );
  }
}

Demo

responsive_text_field demo

About

License:Apache License 2.0


Languages

Language:Dart 93.8%Language:Objective-C 2.8%Language:Shell 2.0%Language:Java 1.4%