Skip to content

Commit

Permalink
Update wallet_created_view.dart
Browse files Browse the repository at this point in the history
removes `ClipRect` that causes the entire container not to display
  • Loading branch information
thiagocarvalhodev committed Oct 3, 2024
1 parent 8cc35b4 commit da8ca62
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 da8ca62

Please sign in to comment.