Skip to content

Commit

Permalink
Merge pull request #1883 from ardriveapp/fix-seedphrase-blur-issue
Browse files Browse the repository at this point in the history
fix seedphrase blur issue
  • Loading branch information
thiagocarvalhodev authored Oct 3, 2024
2 parents 4ae27e4 + da8ca62 commit e581fda
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/authentication/login/views/wallet_created_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -385,11 +385,10 @@ class _WalletCreatedViewState extends State<WalletCreatedView> {
color: colorTokens.textMid, fontWeight: ArFontWeight.book)));

return isBlurred
? ClipRect(
child: ImageFiltered(
? ImageFiltered(
imageFilter: ImageFilter.blur(sigmaX: 5, sigmaY: 5),
child: text,
))
)
: text;
}

Expand Down

0 comments on commit e581fda

Please sign in to comment.