flutter-masked-text icon indicating copy to clipboard operation
flutter-masked-text copied to clipboard

Can I use this in Text()?

Open annagat opened this issue 5 years ago • 0 comments

Hello,

A newbie here, please help. Can I use this in Text()? How? Please see below code where I want to use this.

// Holds the text that user typed. String text = '';

Container( margin: const EdgeInsets.only(left: 86.0), alignment: Alignment.centerLeft, child: Text( text, style: TextStyle( fontSize: 35.0, letterSpacing: 20.0, ), ), ),

I want that when user types it only the * will appear and not the actual number that the user types.

Thanks in advance.

annagat avatar Dec 11 '19 02:12 annagat