Texte dans la colonne Flutter Overflow Ellipsis ne fonctionne pas

 return Expanded(
    child: Container(
    	child: Column(
    		children: [
    			Text("Your text here...",
    				overflow: TextOverflow.ellipsis
                )
        	]
        )
    )
);
cesarxxe