I have made this structs becouse i want to do a global model. In the initial view the user enters al the data, the you push the start button and go to the question rowview
struct Question {
let problem: String
let answer: String
}
struct Game {
let score: Int = 0
var numberOfCuestions: [String] = ["5", "10", "20", "All"]
var tableOfMultip: Int = 0
var problem: String = ""
var product: String = ""
mutating func createTableOfMult(table a: Int) -> [Question]{
var question = [Question]()
for i in 1...12{
problem = "(\(a) * \(i))"
product = "\(a * i)"
question.append(Question(problem: problem, answer: product))
}
return question
}
}
but when i use on to create the cuestion row in a separate view i get the error : No exact matches in call to initializer
import SwiftUI
struct QuestionRow: View {
@Binding var game: Game
@State private var answer = ""
var body: some View {
ZStack {
HStack {
Text(game.createTableOfMult(table: game.tableOfMultip)) //No exact matches in call to initializer
.padding([.top, .leading, .bottom])
TextField(/*@START_MENU_TOKEN@*/"Placeholder"/*@END_MENU_TOKEN@*/, text: $answer)
.frame(width: 100, height: 100)
// .background(questions)
}
.font(.system(size: 48, weight: .regular, design: .monospaced))
}
}
}
struct QuestionRow_Previews: PreviewProvider {
static private var game = Binding.constant(Game())
static var previews: some View {
QuestionRow(game: game)
}
}
does someone know why?