Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make a list scroll to bottom with SwiftUI

Tags:

ios

swift

swiftui

I have a list and when I insert an item, i want to the list to scroll to the bottom automatically when my @ObservedObject changed.

There is my actual View code :

struct DialogView: View {

    @ObservedObject var viewModel = DialogViewModel()

    var body: some View {
            List {
                ForEach(self.viewModel.discussion, id: \.uuid) {
                    Text($0.content)
                }
            }.animation(Animation.easeOut)


    }
}
like image 319
Kevin ABRIOUX Avatar asked Sep 18 '19 07:09

Kevin ABRIOUX


Video Answer


1 Answers

SwiftUI 2.0

Now with Xcode 12 / iOS 14 it can be solved using ScrollViewReader/ScrollViewProxy in ScrollView and LazyVStack (for performance, rows reuse, etc) as follows

struct DialogView: View {

    @ObservedObject var viewModel = DialogViewModel()

    var body: some View {
        ScrollView {
            ScrollViewReader { sp in
                LazyVStack {
                    ForEach(self.viewModel.discussion, id: \.uuid) {
                        Text($0.content).id($0.uuid)
                    }
                }
                .onReceive(viewModel.$discussion) { _ in
                    guard !viewModel.discussion.isEmpty else { return }

                    withAnimation(Animation.easeInOut) {
                        sp.scrollTo(viewModel.discussion.last!.uuid)
                    }
                }
            }
        }
    }
}
like image 79
Asperi Avatar answered Nov 15 '22 04:11

Asperi