Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Fix #8166: Wallet Tab Bar #8287

Merged
merged 6 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions Sources/BraveUI/SwiftUI/Shimmer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,10 @@ private struct ShimmerViewModifier: ViewModifier {
endPoint: points.1
)
.onAppear {
if #available(iOS 16, *) {
DispatchQueue.main.async { [self] in // Need this due to a SwiftUI bug…
withAnimation(animation) {
points = (.trailing, UnitPoint(x: 2, y: 0.5))
}
} else {
DispatchQueue.main.async { [self] in // Need this due to a SwiftUI bug…
withAnimation(animation) {
points = (.trailing, UnitPoint(x: 2, y: 0.5))
}
}
}
}
}
Expand Down
263 changes: 0 additions & 263 deletions Sources/BraveWallet/Crypto/CryptoPagesView.swift

This file was deleted.

Loading