-
-
Save sturdysturge/dfd06bf49049a7f872d19335a1e02064 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 | |
extension Edge { | |
var name: String { | |
switch self { | |
case .top: | |
return ".top" | |
case .leading: | |
return ".leading" | |
case .bottom: | |
return ".bottom" | |
case .trailing: | |
return ".trailing" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment