✏️ The package provides a one line ellipsized text with the ability to adjust the position of the ellipsis.
A very handy widget for shortening public addresses of crypto wallets or other information abbreviations.
The widget is easy to use: Start position:
EllipsizedText(
"Ellipsized Text Ellipsized Text Ellipsized Text Ellipsized Text",
type: EllipsisType.start,
style: TextStyle(fontSize: 24),
),
Middle position:
EllipsizedText(
"Ellipsized Text Ellipsized Text Ellipsized Text Ellipsized Text",
type: EllipsisType.middle,
style: TextStyle(fontSize: 24),
),
End position:
EllipsizedText(
"Ellipsized Text Ellipsized Text Ellipsized Text Ellipsized Text",
type: EllipsisType.end,
style: TextStyle(fontSize: 24),
),
For more details see example project.
And feel free to open an issue if you find any bugs or errors or suggestions.