Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created August 8, 2022 22:21
Show Gist options
  • Save sturdysturge/dfd06bf49049a7f872d19335a1e02064 to your computer and use it in GitHub Desktop.
Save sturdysturge/dfd06bf49049a7f872d19335a1e02064 to your computer and use it in GitHub Desktop.
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