Search posts, tags, users, and pages
Xavier
iOS Developer
The Settings app is an essential part of the iOS ecosystem, allowing users to configure their devices and manage their apps. With SwiftUI, it's easier than ever to create beautiful and intuitive user interfaces for iOS apps. In this blog post, we'll ...
Namit Gupta
Seasoned Mobile App Dev (iOS & React Native)
Any advantage of using List over Form for the settings screen?
List
Form
Not necessarily. I’m using List for the .listStyle(.insetGrouped) view modifier. If you’re using Form, you can use .form(.grouped) for the same result.
.listStyle(.insetGrouped)
.form(.grouped)
Namit Gupta
Seasoned Mobile App Dev (iOS & React Native)
Any advantage of using
ListoverFormfor the settings screen?