Browsing Category
iOS Developers
107 posts
How to create a custom Back Button in SwiftUI
Instead of using UIKit APIs to customize the Back button, an alternative approach is to hide the default…
December 26, 2024
Customizing the Back Button Image and Color of a Navigation View in SwiftUI
The back button of a navigation view is typically blue by default and uses a chevron icon to…
December 26, 2024
Customizing the Navigation Bar in SwiftUI
By default, the navigation bar is set to display as a large title. However, if you want to…
December 26, 2024
How to use NavigationLink in SwiftUI
Like list views, navigation views are UI components that are frequently used in iOS apps. They provide a…
December 25, 2024
How to change the back button image and color in SwiftUI
The navigation view’s back button is usually set to blue by default and uses a chevron icon to…
December 24, 2024
How to change font and color in a Navigation Bar in SwiftUI
Currently, SwiftUI does not provide a direct modifier to set the font and color of the navigation bar.…
December 24, 2024
How to use NavigationStack in SwiftUI
In this tutorial we are going to look at how to use NavigationStack in SwiftUI. In many apps…
December 23, 2024
How to change the background color in a List view in SwiftUI
Starting with iOS 16, you can customize the color of the scrollable area of a list view. Simply…
December 23, 2024
How to hide the SwiftUI List Row separators
To hide separators in SwiftUI we will use the modifier listRowSeparator and set its value to .hidden. Here…
December 22, 2024
How to change List Row separator color in SwiftUI
Since iOS 15, we have a new modifier to customize the appearance of a list view. To change…
December 22, 2024
Identifiable protocol in Swift and SwiftUI
Identifiable is a protocol in Swift that forces types to include a unique identifier property. This identifier helps…
December 21, 2024
How to create a List with text and images in SwiftUI
In the previous SwiftUI tutorial we saw how to create a table or List with SwiftUI. In this…
December 20, 2024