From 2c207c1f4c652a539919cdc5b7cbe43d470d3f95 Mon Sep 17 00:00:00 2001 From: PavloNetrebchuk <141041606+PavloNetrebchuk@users.noreply.github.com> Date: Mon, 16 Oct 2023 18:18:04 +0300 Subject: [PATCH] Fixed content scrolling (Added space at the bottom) (#73) --- .../presentation/anothers_account/AnothersProfileFragment.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profile/src/main/java/org/openedx/profile/presentation/anothers_account/AnothersProfileFragment.kt b/profile/src/main/java/org/openedx/profile/presentation/anothers_account/AnothersProfileFragment.kt index 3007a416b..c4cd55ab7 100644 --- a/profile/src/main/java/org/openedx/profile/presentation/anothers_account/AnothersProfileFragment.kt +++ b/profile/src/main/java/org/openedx/profile/presentation/anothers_account/AnothersProfileFragment.kt @@ -199,6 +199,8 @@ private fun AnothersProfileScreen( Spacer(modifier = Modifier.height(36.dp)) ProfileInfoSection(uiState.account) + + Spacer(modifier = Modifier.height(36.dp)) } } }