Issue #505
Make sure all String
are passed into Text
, not Optional<String>
VStack {
Text(data.title)
Text(data.description!)
Text(data.text!)
}
Issue #505
Make sure all String
are passed into Text
, not Optional<String>
VStack {
Text(data.title)
Text(data.description!)
Text(data.text!)
}