Posts by Samim

Author Biographical Info: Not available

How to copy text to the clipboard in SwiftUI

By Samim

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

Remove the left and right Padding of each row in the List in SwiftUI

By Samim

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

How to reload View in SwiftUI

By Samim

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

Disable the uppercase text style for section headers in SwiftUI Lists

By Samim

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

How to initialize @StateObject with parameters in SwiftUI

By Samim

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

How to enable multiple gesture simultaneously in SwiftUI

By Samim

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

Change background color of Rounded Corner Border Button in SwiftUI

By Samim

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

Always show the search bar in a navigation bar in SwiftUI

By Samim

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

Related Posts