Daniele B
01/29/2021, 1:37 PMScrollableColumn
(which is now deprecated) with
Column(modifier = Modifier.verticalScroll(rememberScrollState())
but Column
doesn’t have the contentPadding
parameter, so when using Scaffold
with a BottomBar
, the bottom part of the column gets covered by the bottombar.
Any solution?allan.conda
01/29/2021, 2:03 PMAndrey Kulikov
01/29/2021, 2:56 PM.padding(contentPadding)
after verticalScroll
modifierDaniele B
01/29/2021, 3:02 PMDaniele B
01/29/2021, 3:03 PMAndrey Kulikov
01/29/2021, 3:05 PMAndrey Kulikov
01/29/2021, 3:08 PMCyril Find
01/29/2021, 3:10 PMScrollableColumn
and Column(modifier = Modifier.verticalScroll(...))
?Daniele B
01/29/2021, 3:11 PMDaniele B
01/29/2021, 3:12 PMScrollableColumn
is deprecatedAndrey Kulikov
01/29/2021, 3:12 PMCyril Find
01/29/2021, 3:12 PMCyril Find
01/29/2021, 3:13 PMDaniele B
01/29/2021, 3:15 PMcontentPadding
is still a parameter of LazyColumn
. Is it also going to be removed from there or is there a meaningful reason to keep it there?Andrey Kulikov
01/29/2021, 3:17 PM