flutter_linkify
flutter_linkify copied to clipboard
Max Lines and Overflow Property do not work with Links itself
Mutiple Lines in the Link is causing the widget to expand. MaxLines and Overflow works on normal text but not on Links.
Linkify(
maxLines: 1,
overflow: TextOverflow.ellipsis,
text: networkPostData?.request?.link ??
parsedLinkModel?.data?.url ??
"",
style: GoogleFonts.sarala(
color: Colors.black,
),
onOpen: (url) {
launch(url.url);
},
)
+1
+1