Posts from Swift

Customize ProgressView in SwiftUI

By Samim

In this tutorial, we will see how to customize ProgressView in SwiftUI. The ProgressView in SwiftUI is like a visual bar that shows how much something has finished or how much is l.... Read More

Disable swipe down to dismiss Sheet in SwiftUI

By Samim

In this tutorial, we will see how to disable swipe down to dismiss sheet in SwiftUI. The SwiftUI sheet view can be dismissed by swiping it down by default. So, if we want to preven.... Read More

Read text from a TextField in SwiftUI

By Samim

In this tutorial, we will see how to read text from a TextField in SwiftUI. In SwiftUI, text input from a TextField can be managed by binding it to a @State property. This binding .... Read More

Change font color of a TextField in SwiftUI

By Samim

In this tutorial, we will see how to change the font color of a TextField in SwiftUI. This article will cover the topics mentioned below. Changing Font Color in TextField Change Cu.... Read More

Open a SwiftUI app from URL link using URL Scheme

By Saruque Ahamed Mollick

I was wondering if I could do the same as other big companies generally do with their app and websites. You must have noticed that if you click on an Amazon link from your browser .... Read More

URL Scheme is not working in SwiftUI – Solution

By Saruque Ahamed Mollick

I just tried using URL Scheme in my Xcode project to open my iOS application from the browser through URL and found an error like this: “safari cannot open the page because t.... Read More

Add label to a TextField in SwiftUI

By Samim

In this tutorial, we will see how to add a label to a TextField in SwiftUI. We can organize the label and TextField in different orientations, either vertically or horizontally usi.... Read More

Change the background color of a TextField in SwiftUI

By Samim

In this tutorial, we will see how to change the background color of a TextField in SwiftUI. We can change the background color of a TextField in SwiftUI in several ways. Now, follo.... Read More