minLines property
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
final int minLines;