From 0842a97cace62a3940391a25611321dfffa2bdfc Mon Sep 17 00:00:00 2001 From: Flavio Fraschetti Date: Mon, 11 Sep 2023 11:12:46 +0100 Subject: [PATCH] Fix: composer is separated from the footer #17238 This PR resolves the issue where Composer becomes detached from the footer during the chat history loading phase, specifically when the skeleton screen is displayed. Fixes #17237. --- src/status_im2/contexts/chat/messages/list/view.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im2/contexts/chat/messages/list/view.cljs b/src/status_im2/contexts/chat/messages/list/view.cljs index 58650477a2..ba53fe8994 100644 --- a/src/status_im2/contexts/chat/messages/list/view.cljs +++ b/src/status_im2/contexts/chat/messages/list/view.cljs @@ -363,5 +363,5 @@ top-spacing (when (not chat-screen-loaded?) navigation.style/navigation-bar-height)] (if chat-screen-loaded? [:f> f-messages-list-content props] - [rn/view {:style {:padding-top top-spacing}} + [rn/view {:style {:padding-top top-spacing :flex 1}} [quo/skeleton-list (skeleton-list-props :messages content-height false)]])))