minLines property

  1. @override
int minLines
final

Minimum number of lines the text input field can contain.

Defaults to 1.

Example:


@override
Widget build(BuildContext context) {
  return SfChat(
    composer: ChatComposer(
      minLines: 1,
    )
  );
}

Implementation

@override
final int minLines;