flutter_linkify icon indicating copy to clipboard operation
flutter_linkify copied to clipboard

Max Lines and Overflow Property do not work with Links itself

Open Ayushrestha05 opened this issue 3 years ago • 2 comments

Screenshot_20220725-122251__01 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);
  },
)

Ayushrestha05 avatar Jul 25 '22 06:07 Ayushrestha05

+1

romandrahan avatar Oct 19 '22 17:10 romandrahan

+1

xingshou avatar Dec 07 '22 08:12 xingshou