Posts by Samim
Author Biographical Info: Not available
In this tutorial, we will see the process of how to copy text to the clipboard in SwiftUI. SwiftUI doesn’t provide direct clipboard manipulation. So, we can utilize the UIPas.... Read More
In this tutorial, we will see how to remove the left and right Padding of each row in the List in SwiftUI. We can remove the left and right padding of a list by using the listRowIn.... Read More
In this tutorial, we will see the process of reloading views in SwiftUI using various data properties. The SwiftUI views will be automatically updated when the data they depend on .... Read More
In this tutorial, we will see how to disable the uppercase text style for section headers in SwiftUI Lists. When we use the List view and add section headers, they usually appear i.... Read More
In this tutorial, we will see how to initialize @StateObject with parameters in SwiftUI. We use the @StateObject property wrapper to manage the lifecycle of an ObservableObject. It.... Read More
In this tutorial, we will see how to recognize two gestures simultaneously in SwiftUI. SwiftUI normally only activates one gesture recognizer action at a time, and it prioritizes t.... Read More
In this tutorial, we will see how to change the background color of the Rounded Corner Border Button in SwiftUI. We can simply create a rounded corner button with a border using a .... Read More
In this tutorial, we will see how to keep the search bar always visible within the navigation bar. We can now add a search bar to our navigation views, this simplifies the process .... Read More