SwiftUIの基本を身につけたい方はこちら

【SwiftUI】foregroundColorが非推奨になりました。代わりにforegroundStyleを使いましょう。

foregroundColorが非推奨に

iOS17からforegroundColorが非推奨になりました。

‘foregroundColor” will be deprecated in a future version of ios:
renamed to foregroundStyle(_:)’

これからの書き方

これからは、.foregroundStyleを使いましょう。使い方は変わらないです。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Text("Hello, world")
.foregroundStyle(.red)
Text("Hello, world") .foregroundStyle(.red)
Text("Hello, world")
    .foregroundStyle(.red)

公式サイト

.foregroundColor

参考 foregroundColor(_:)Apple Developer Documentation

.foregroundStyle

参考 foregroundStyle(_:)Apple Developer Documentation

評価