Animated-Text-Kit icon indicating copy to clipboard operation
Animated-Text-Kit copied to clipboard

Access to MaxLine and textOverflow

Open Princewil opened this issue 1 year ago • 1 comments

I need more controls on the text😭😭😭😭 eg MaxLine and TextOverflow features👏

Princewil avatar Feb 02 '25 00:02 Princewil

I need more controls on the text😭😭😭😭 eg MaxLine and TextOverflow features👏

Hi @Princewil , you can edit TextOverflow in TextStyle property, eg.:

TypewriterAnimatedText(text,
    cursor: '|',
    speed: const Duration(milliseconds: 60),
    curve: Curves.easeInCubic,
    textStyle: TextStyle(
        //...
        overflow: TextOverflow.ellipsis,
      ),
  )

At the moment, I cannot find a way to set maxline property :/

marchacio avatar Mar 09 '25 11:03 marchacio