GIF button

Button 1rst option

Code

Text("Tap me")
            .font(.largeTitle)
            .padding()
            .background(Color.green)
            .clipShape(RoundedRectangle(cornerRadius: 20))
            .foregroundStyle(.white)
Swift

Video

Button 2nd option

Code

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

Video