flutter-masked-text
flutter-masked-text copied to clipboard
Can I use this in Text()?
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.