SwiftUIでTextfield(ユーザーが書き込むテキスト)のtextcolorを変更しようとしています。私はforegroundColorを試していますが、プレースホルダーのテキストの色が変わります。
SwiftUIでこれをどのように行いますか?
TextField($variable, placeholder: Text("a text"))
.foregroundColor(.green)
テキストフィールドのプロパティを使用するためにテキストの色を変更する必要があります_.foreground color
_ Xcode Version 11.1 (11A1027)
の更新
SwiftUI
_TextField("Email", text: $email)
.textContentType(.emailAddress)
.padding(.init(top: 0, leading: 15, bottom:0 , trailing: 15))
.foregroundColor(.blue)
.textFieldStyle(RoundedBorderTextFieldStyle.init())
_