Saya mencoba membuat TabView
di SwiftUI dengan kode berikut:
@State var selection = 0
var body: some View {
TabView(selection: $selection) {
DataGridPage(type: "media").tabItem {
Image(systemName: "photo.on.rectangle")
.imageScale(.large)
.foregroundColor(.yellow)
}
.tag(1)
DataGridPage(type: "files").tabItem {
Image(systemName: "doc.on.doc")
.imageScale(.large)
.foregroundColor(.yellow)
}
.tag(2)
}
}
Tapi saya menerima kesalahan Cannot convert value of type 'Binding<Int>' to expected argument type 'Binding<_>'
. Saya melihat bahwa variabelnya selection
adalah integer, yang merupakan tipe yang benar tetapi peringatan masih ada karena beberapa alasan.