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
| // Generic App config enum | |
| enum AppConfig { | |
| static let apiBaseURL = URL(string: "https://api.swiftbysundell.com")! | |
| static var enableExperimentalFeatures = false | |
| ... | |
| } | |
| // Animation States | |
| extension Animation { | |
| enum RepeatMode: Equatable { |
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
| // Resizable image, fits in frame | |
| Image(systemName: "umbrella") | |
| .resizable() | |
| .aspectRatio(contentMode: .fit) | |
| .frame(width: 50, height: 50) | |
| //Increase hit area, including transparent area |