Skip to main content

How to create expanding lists

About 2 minSwiftSwiftUIArticle(s)bloghackingwithswift.comcrashcourseswiftswiftuixcodeappstore

How to create expanding lists 관련

SwiftUI by Example

Back to Home

How to create expanding lists | SwiftUI by Example

How to create expanding lists

Updated for Xcode 15

SwiftUI's List view has an enhanced initializer that lets us create expanding sections with child elements – they will be rendered with tappable arrows that open out to reveal children when tapped.

To use this form of List you need to have data in a precise form: your data model should have an optional array of children that are of the same type, so you can create a tree. Normally you're likely to load this kind of stuff from JSON or similar, but to keep things simple here I'll just paste in some hard-coded data so you can see what it ought to look like.

Once you have your data in place, you can load it into a list by passing in your array of data plus a keypath to where the children are, which in our case will be \.items. You'll then get a regular closure where you can provide your row data, just like normal.

Here's the code:

struct Bookmark: Identifiable {
    let id = UUID()
    let name: String
    let icon: String
    var items: [Bookmark]?

    // some example websites
    static let apple = Bookmark(name: "Apple", icon: "1.circle")
    static let bbc = Bookmark(name: "BBC", icon: "square.and.pencil")
    static let swift = Bookmark(name: "Swift", icon: "bolt.fill")
    static let twitter = Bookmark(name: "Twitter", icon: "mic")

    // some example groups
    static let example1 = Bookmark(name: "Favorites", icon: "star", items: [Bookmark.apple, Bookmark.bbc, Bookmark.swift, Bookmark.twitter])
    static let example2 = Bookmark(name: "Recent", icon: "timer", items: [Bookmark.apple, Bookmark.bbc, Bookmark.swift, Bookmark.twitter])
    static let example3 = Bookmark(name: "Recommended", icon: "hand.thumbsup", items: [Bookmark.apple, Bookmark.bbc, Bookmark.swift, Bookmark.twitter])
}

struct ContentView: View {
    let items: [Bookmark] = [.example1, .example2, .example3]

    var body: some View {
        List(items, children: \.items) { row in
            HStack {
                Image(systemName: row.icon)
                Text(row.name)
            }
        }
    }
}

Download this as an Xcode projectopen in new window

Tips

That's just placeholder data so I've repeated the same bookmarks several times, but hopefully you get the point.

When that code runs you'll see three rows for our groups, plus disclosure indicators that fold out to reveal their children.

Similar solutions…
How to create multi-column lists using Table | SwiftUI by Example

How to create multi-column lists using Table
How to create grouped and inset grouped lists | SwiftUI by Example

How to create grouped and inset grouped lists
Working with lists | SwiftUI by Example

Working with lists
How to get translucent lists on macOS | SwiftUI by Example

How to get translucent lists on macOS
How to make carousel lists on watchOS | SwiftUI by Example

How to make carousel lists on watchOS

이찬희 (MarkiiimarK)
Never Stop Learning.