मैं TabView
निम्नलिखित कोड के साथ SwiftUI में एक बनाने की कोशिश कर रहा हूं :
@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)
}
}
लेकिन मैं त्रुटि प्राप्त कर रहा हूं Cannot convert value of type 'Binding<Int>' to expected argument type 'Binding<_>'
। मैं देखता हूं कि चर selection
पूर्णांक है, जो सही प्रकार है, लेकिन चेतावनी किसी कारण से अभी भी है।