Use multiple Font text in swiftui fonts
In swift we used to add two different label for different font. this can be achieved in swiftui fonts.
We can add this in below format in SwiftUI.
struct ContentView: View {
var body: some View {
Text("Hello, World!") + Text(" Hello, World!").bold() + Text(" Hello, World!").underline()
}
}