Latest Post

Dependency injection in swift SwiftUI interview questions and answer How to display SwiftUI sheet Half screen

 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()

    }

    

}
Screenshot%2B2021 08 25%2Bat%2B6.40.23%2BPM