Jannik
Jannik

Reputation: 75

Flutter Obscure Text in an Text Widget

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

Answers (1)

halface_sun
halface_sun

Reputation: 429

You can obscure the text by yourself.

Text(
  isObscure == true
    ? _text
    : '${_text.replaceAll(RegExp(r"."), "*")}'
),

Upvotes: 13

Related Questions