flutter-autocomplete-textfield icon indicating copy to clipboard operation
flutter-autocomplete-textfield copied to clipboard

How to make new line from flutter autocomplete textfield

Open manhtuan1712 opened this issue 4 years ago • 1 comments

Hi, i have very long text when i input back to autocomplete text field it is on the same line and do not wrap new line. How to make text auto-wrap when it's too long. Thanks all

manhtuan1712 avatar Oct 08 '19 07:10 manhtuan1712

Hi!

You can use "\n" for new lines. Try this:

itemBuilder: (context, item){						
	return ListTile(
		title: Text("This is a title"),
		subtitle: Text("Lorem ipsum dolor sit amet,\nconsectetur adipiscing elit,\nsed do eiusmod tempor\n incididunt ut labore et\n dolore magna aliqua"),
	);
},

Check the "\n" in subtitle property.

acuero avatar Nov 18 '19 15:11 acuero