前提・実現したいこと
初めてのプログラミング言語にswiftを勉強しています。swiftでお絵描きアプリを作っていますが、Textに記述した"色"や"線幅"の文字が表示されず困っています。また、「paintbrush.fill」に色が反映されるはずですが、色が反映されず、何色を選択しているのか分からない状態になっています。
発生している問題・エラーメッセージ
エラーメッセージは出ておらず、resumeでテキストが表示されていないことから気がつきました。
該当のソースコード
import SwiftUI struct SettingView: View { @Environment(.presentationMode) var presentationMode @Binding var colorSel:Int @Binding var lineWidth:Int @Binding var colors:[Color] var body: some View { VStack{ Picker(selection: $colorSel, label: Text("色").frame(width: 40)) { ForEach(0..<colors.count){ value in if value == self.colors.count - 1 { Image(systemName: "square") } else { Image(systemName: "paintbrush.fill") .foregroundColor(self.colors[value]) } } } Spacer() Picker(selection: $lineWidth, label: Text("線幅").frame(width: 40)) { ForEach(1..<11){ value in Text(String(value)) } } .frame(width: 30) Spacer() Button(action: { self.presentationMode.wrappedValue.dismiss() }){ Text("閉じる") } }.padding() } } struct SettingView_Previews: PreviewProvider { static var previews: some View { SettingView(colorSel: .constant(0), lineWidth: .constant(3), colors: .constant([.black, .red, .blue, .green, .white])) } }
試したこと
Webで調べたり、参考書を見ながらコードを見直したりしましたが、Pickerの記述が間違っているのか、引数がおかしいのか特定できませんでした。widthやheightの値を変えてみたり、paddingやSpacerで間隔を空けてみたりしましたが、なぜエラーになっているのかわかりません。
お手数ですが、どなたかご回答いただけると幸いです。
補足情報(FW/ツールのバージョンなど)
Xcode12
あなたの回答
tips
プレビュー