Flutter Material UI TextAlign Enum

How overflowing text should be handled. A TextOverflow can be passed to Text and RichText via their Text.overflow and RichText.overflow properties respectively.


TextOverflow Constants

  • TextOverflow.clip: Clip the overflowing text to fix its container.

  • TextOverflow.ellipsis: Use an ellipsis to indicate that the text has overflowed.

  • TextOverflow.fade: Fade the overflowing text to transparent.

  • TextOverflow.visible: Render overflowing text outside of its container.

  • TextOverflow.values: A constant List of the values in this enum, in order of their declaration.


Reference