I'm trying to show my response data using SwiftUI Text with formatted text ex: Bold, but for some reason it's not working 🤔
The needed behaviour as below:
This is working!
Text("**Hello** *World*")
But this is not 🤔
let text: String = "**Hello** *World*"
Text(text)
Am I missing something 🤔

