Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created May 1, 2024 19:24
Show Gist options
  • Save apatronl/814df8ae4a9a1c5930b93de57247d1ad to your computer and use it in GitHub Desktop.
Save apatronl/814df8ae4a9a1c5930b93de57247d1ad to your computer and use it in GitHub Desktop.
import SwiftUI
struct LoadingView: View {
var body: some View {
Image(systemName: "ellipsis.rectangle.fill")
.symbolRenderingMode(.hierarchical)
.foregroundStyle(Color.gray)
.font(.largeTitle)
.symbolEffect(.variableColor, options: .repeating, isActive: true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment