Search code examples
swiftui

Is there a list of absolutely EVERY modifier that is available for SwiftUI?


Here I am trying to create designs in SwiftUI and I am guessing and constantly looking up modifiers on the web and wondering how did David Hudson know that there is such thing as .padding(EdgeInsets) available? If I had a list of absolutely every modifier available in SwiftUI on ONE long page I could guess my way forward. So, rather than me guessing the name I'd like to guess what they are doing!

Does anybody have such COMPLETE list??

And by the way - yes, the Apple developer webpage provides the info, but I want it in ONE list!


Solution

  • The easiest way to find the list of all the modifiers in the Xcode search by searching View Modifiers. The Xcode then gives you this list: Link to the Apple ViewModifiers documentation

    I think this is the best we can do with standard modifiers. Also, keep in mind, that there are could be more of them in a project that you work on as anyone can add new modifiers to their projects.