Before
Text("Test")
.padding()
.background(Color.black)
.foregroundStyle(.white)
.cornerRadius(40) // 非推奨
After
Text("Test")
.padding()
.background(Color.black)
.foregroundStyle(.white)
.clipShape(RoundedRectangle(cornerRadius: 40))
まとめ
いつからかわかりませんが、Xcode15 beta8にアプデしたら非推奨になっていたので同じ結果になるように対応しました!
非推奨記事