Skip to content

Instantly share code, notes, and snippets.

@SarahAlsharif
Created February 3, 2022 16:29
Show Gist options
  • Save SarahAlsharif/31e3fb8fb3eddd55c91b9ab3d28dccf5 to your computer and use it in GitHub Desktop.
Save SarahAlsharif/31e3fb8fb3eddd55c91b9ab3d28dccf5 to your computer and use it in GitHub Desktop.
struct CustomButton : View {
var body: some View {
ZStack {
Color(Colors.mainColor)
Button("Click") {
}
.buttonStyle(NeumorphicButtonStyle(width: 200, cornerRadius : 20))
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment