Button 1rst option

Code
Text("Tap me")
.font(.largeTitle)
.padding()
.background(Color.green)
.clipShape(RoundedRectangle(cornerRadius: 20))
.foregroundStyle(.white)SwiftVideo
Button 2nd option

Code
Text("Hit me")
.font(Font.largeTitle.bold())
.padding()
.background(Color.red)
.foregroundStyle(.white)
.clipShape(RoundedRectangle(cornerRadius:19))Swift