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 AnimatingProgressView: ViewModifier { | |
| var isAnimating: Bool | |
| @ViewBuilder | |
| func body(content: Content) -> some View { | |
| if isAnimating { | |
| content |
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 GenericRow<T>: Identifiable { | |
| var id = UUID() | |
| let type: T | |
| var title: String | |
| } | |
| struct PickerGenericRowView<T: Hashable>: View { | |