From 96741af97b3ab33deba8643a2a34c8f725e4a483 Mon Sep 17 00:00:00 2001 From: Aidan O'Loan Date: Wed, 4 Jan 2023 09:52:51 -0500 Subject: [PATCH] Scroll to bottom when new DM received Closes: #242 Closes: #241 Changelog-Fixed: Scroll to bottom when new DM received --- damus/Views/DMChatView.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/damus/Views/DMChatView.swift b/damus/Views/DMChatView.swift index bd91c60f..0c71bc6e 100644 --- a/damus/Views/DMChatView.swift +++ b/damus/Views/DMChatView.swift @@ -27,6 +27,10 @@ struct DMChatView: View { } .onAppear { scroller.scrollTo("endblock") + }.onChange(of: dms.events.count) { _ in + withAnimation { + scroller.scrollTo("endblock") + } } } }