Posts by Samim

Author Biographical Info: Not available

Change the TextField values programmatically in SwiftUI

By Samim

In this tutorial, we will see how to change the TextField values programmatically in SwiftUI. In this article, we will cover the topics mentioned below. Programmatically Changing T.... Read More

Change the TextField style after tapping on it in SwiftUI

By Samim

In this tutorial, we will see how to change the TextField style after tapping on it in SwiftUI. In SwiftUI, we can change the style of a TextField after tapping on it by using the .... Read More

Customize the submit button for TextField and SecureField in SwiftUI

By Samim

In this tutorial, we will see how to customize the submit button for TextField and SecureField in SwiftUI. Actually we can only change the label of that button. In SwiftUI, we can .... Read More

Add actions to alert buttons in SwiftUI

By Samim

In this tutorial, we will see how to add actions to alert buttons in SwiftUI. We can add actions to alert buttons using the .alert modifier along with the Alert structure in SwiftU.... Read More

Hide the navigation back button in SwiftUI

By Samim

In this tutorial, we will see how to hide the navigation back button in SwiftUI. SwiftUI provides a modifier called navigationBarBackButtonHidden(), by specifying the boolean value.... Read More

How to Extract Subviews in SwiftUI

By Samim

In this tutorial, we will see how to extract subviews in SwiftUI. We can extract subviews by creating separate views and then using them within a parent view. This helps us organiz.... Read More

Create a marching ants border effect in SwiftUI

By Samim

In this tutorial, we will see how to create a marching ants border effect in SwiftUI. In SwiftUI, we can achieve a marching ants border effect by utilizing the strokeBorder modifie.... Read More

Adjust the opacity of a view in SwiftUI

By Samim

In this tutorial, we will see how to adjust the opacity of a view in SwiftUI. The .opacity() modifier in SwiftUI controls opacity, which determines how transparent a view is. It ra.... Read More