Skip to content

Instantly share code, notes, and snippets.

@prafullakumar
Created January 24, 2021 13:26
Show Gist options
  • Save prafullakumar/8f9bffc62d9c1089259afea1564b0a4a to your computer and use it in GitHub Desktop.
Save prafullakumar/8f9bffc62d9c1089259afea1564b0a4a to your computer and use it in GitHub Desktop.
//step 3 - crate a polymorphic view with same name as swiftUI's cornerRadius
extension View {
func cornerRadius(radius: CGFloat, corners: UIRectCorner) -> some View {
ModifiedContent(content: self, modifier: CornerRadiusStyle(radius: radius, corners: corners))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment