I have a really basic screen, with a Column on it ...
# compose-android
f
I have a really basic screen, with a Column on it and a couple of items (rows) when I navigate between tabs in the bottom bar, the column has an animation where it starts in the centre of the screen and moves up to the top. I’ve tried both LazyColumn and Column and I still get this animation effect. Does anyone know if this is by design, and how I go about disabling the animation
s
Is your first composable inside the screen destination taking up the entire size by default? Like this?
Copy code
composable("...") {
  Box(Modifier.fillMaxSize()) {
    Your code here...
  }
}
f
Great thanks Stylianos that was the issue I didn’t have fillMaxSize
🌟 2