Skip to content

Instantly share code, notes, and snippets.

@prafullakumar
Created January 24, 2021 13:25
Show Gist options
  • Save prafullakumar/6942c1b03031202663153c2dcc66c27e to your computer and use it in GitHub Desktop.
Save prafullakumar/6942c1b03031202663153c2dcc66c27e to your computer and use it in GitHub Desktop.
//step 2 - embed shape in viewModifier to help use with ease
struct CornerRadiusStyle: ViewModifier {
var radius: CGFloat
var corners: UIRectCorner
func body(content: Content) -> some View {
content
.clipShape(CornerRadiusShape(radius: radius, corners: corners))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment