Próbuję utworzyć TabView
w SwiftUI z następującym kodem:
@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)
}
}
Ale otrzymuję błąd Cannot convert value of type 'Binding<Int>' to expected argument type 'Binding<_>'
. Widzę, że zmienna selection
jest liczbą całkowitą, co jest poprawnym typem, ale z jakiegoś powodu ostrzeżenie nadal tam jest.