Created
May 1, 2024 19:24
-
-
Save apatronl/814df8ae4a9a1c5930b93de57247d1ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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