In this tutorial, we will see how to disable autocorrect in a TextField in SwiftUI. Autocorrect is a built-in feature that automatically suggests and corrects words as users type. .... Read More
In this tutorial, we will see how to adjust the List row separator visibility and color in SwiftUI. We can adjust the separator visibility and color for a List by using the listRow.... Read More
In this basic tutorial, I will show you how to play any video from a remote URL in SwiftUI using AVKit. Our first step is to import AVKit. Play video from URL It is simple to do. i.... Read More
In this tutorial, we will see how to animate a text color in SwiftUI. We can animate the text color using the foregroundColor() modifier in various ways. Here are an example below .... Read More
In this tutorial, we will see how to align text to the baseline and top of another text in SwiftUI. I will create a custom speedometer view in SwiftUI. This view will display a lar.... Read More
In this tutorial, we will see how to create a toolbar and add buttons to it in SwiftUI. A toolbar is like a row of buttons at the top or bottom of our computer screen or app. It ma.... Read More
In this tutorial, we will see how to let users select single and multiple rows in a list in SwiftUI. SwiftUI provides a simple way to allow users to select one or multiple rows in .... Read More
I have created a SwiftUI app for movie listing and movie details using TMDB API. First of all, I would like to tell you that I have built this in only one day and there are a lot o.... Read More