Answers for "flutter Truncate long strings with flutterand add three dots"

5

text in column flutter overflow ellipsis not working

return Expanded(
    child: Container(
    	child: Column(
    		children: [
    			Text("Your text here...",
    				overflow: TextOverflow.ellipsis
                )
        	]
        )
    )
);
Posted by: Guest on May-13-2020

Code answers related to "flutter Truncate long strings with flutterand add three dots"

Code answers related to "Dart"

Browse Popular Code Answers by Language