SwiftUI dynamic List with Sections does not Layout correctly

15,413

Solution 1

Giving List a set of items seems to make it incorrectly treat Section as a single view.

You should probably file a radar for this, but in the meantime, this will give you the behavior you're looking for:

struct ListView : View {
    let mygroups = [
        TestData(title: "Numbers", items: ["1","2","3"]),
        TestData(title: "Letters", items: ["A","B","C"]),
        TestData(title: "Symbols", items: ["€","%","&"])
    ]

    var body: some View {
        List {
            ForEach(mygroups) { gr in
                Section(header: Text(gr.title),
                        footer: Text("...footer...") ) {
                            ForEach(gr.items.identified(by: \.self)) { item in
                                Text(item)
                            }
                }
            }
        }
    }
}

Solution 2

Just a small fix for a correct answer above. Since

ForEach(gr.items.identified(by: \.self)) { item in
                            Text(item)
                        }

does not compile as for me, so this do compile and works like a charm:

ForEach(gr.items, id: \.self, content: { item in
                            Text(item)
                        })

Solution 3

While the above solutions work for static data, I'm running into a different situation. In my case, the "mygroups" equivalent is empty when the List is first composed. In the .onAppear{} block, I build the groups.

Once the groups are built I update the @State and the List crashes with this old friend message:

'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of sections. The number of sections contained in the table view after the update (2) must be equal to the number of sections contained in the table view before the update (2), plus or minus the number of sections inserted or deleted (2 inserted, 0 deleted).'

I went from an empty array to one with two sections. I don't think the List is ready yet for such complex dynamic changes (unless there's an API I haven't found yet).

What I'm likely to do is try and build this before the List gets a chance to see it.

Share:
15,413
Bo Frese
Author by

Bo Frese

Software Craftsman and Agile Coach

Updated on June 17, 2022

Comments

  • Bo Frese
    Bo Frese about 2 years

    I'm trying to create a simple dynamic list grouped into sections. (SwiftUI iOS13 Xcode11 beta 2)

    A simple static example would be :

    struct StaticListView : View {
        var body: some View {
            List {
                Section(header: Text("Numbers"), footer: Text("...footer...")) {
                    Text("1")
                    Text("2")
                    Text("3")
                }
                Section(header: Text("Letters"), footer: Text("...footer...")) {
                    Text("a")
                    Text("b")
                    Text("c")
                }
            }
        }
    }
    

    This displays as expected a nice list with section headers and footers

    But when I try to do this from a dynamic list like this :

    struct TestData: Identifiable {
        var id = UUID()
        var title: String
        var items: [String]
    }
    
    struct ListView : View {
        let mygroups = [
            TestData(title: "Numbers", items: ["1","2","3"]),
            TestData(title: "Letters", items: ["A","B","C"]),
            TestData(title: "Symbols", items: ["€","%","&"])
        ]
        var body: some View {
            List (mygroups) { gr in
                Section(header: Text(gr.title),
                        footer: Text("...footer...") ) {
                    ForEach(gr.items.identified(by: \.self)) { item in
                        Text(item)
                    }
                }
            }
        }
    }
    

    The result is a list with only 3 rows. Both the Section header, all the content cells and the footer are combined horizontally into a single row.

    What am I missing?

  • Bo Frese
    Bo Frese about 5 years
    Thanks a lot! Totally solved the problem. I just tried it out on a table with more than 8000 rows in more than 1000 sections. Works like a charm!
  • Quinn
    Quinn almost 5 years
    I can't believe this worked - no clue why the default behaviour is to just list each section as one row...
  • DogCoffee
    DogCoffee over 4 years
    This is great - I found that things begin to fall down when you add features like search and delete.
  • P. Ent
    P. Ent over 4 years
    So yes - building your list data source before handing it to List is the way to go. Right now, my List does not need to change once built, but I wonder how stable List is if you have operations that add and delete items. For anyone trying to display dynamically composed section lists: first build your data source as arrays of array - don't use Dictionary - and then follow the code in the solutions here to create the List.
  • grg
    grg about 4 years
    This should be an edit to the existing answer rather than a separate answer
  • Zappel
    Zappel over 3 years
    I am experiencing exactly this issue. Found any solutions?