Reputation: 75
I would like to know if it is possible to obscure my Text in a normal Text Widget in Flutter.
And when it is how do I do that? I know that it is possible in a TextField
but I would also like to do it in a normal text Widget in Flutter.
Upvotes: 4
Views: 5494
Reputation: 429
You can obscure the text by yourself.
Text(
isObscure == true
? _text
: '${_text.replaceAll(RegExp(r"."), "*")}'
),
Upvotes: 13