INDEX>SwiftUI > Views and Controls テキストフィールド Swift struct TextField<Label> where Label : View 解説 A view that displays one or more lines of read-only text. フレームワーク SwiftUI クラス 使用可能 参照 更新時のバージョン 関連記事(外部サイト) 例文 Swift @State private var name = "" var body: some View { VStack { TextField("your name?", text: $name) .textFieldStyle(RoundedBorderTextFieldStyle()) .padding() Text("Hello, World!") .frame(ma