Estou tentando criar um TabView
no SwiftUI com o seguinte código:
@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)
}
}
Mas estou recebendo erro Cannot convert value of type 'Binding<Int>' to expected argument type 'Binding<_>'
. Vejo que a variável selection
é um número inteiro, que é o tipo correto, mas o aviso ainda está lá por algum motivo.