I have the following layout ```Column( modifier...
# compose
d
I have the following layout
Copy code
Column(
  modifier = Modifier
    .navigationBarsWithImePadding()
) {
  TopAppBar()
  Column(
    modifier = Modifier
      .verticalScroll(rememberScrollState())
      .fillMaxSize()
  ) { ... }
}
Initially screen opens with visible keyboard and outer Column is of the visible height (approx half of the screen). After keyboard is hidden, outer Column stretches to full screen height, but inner Column stays at half of the screen height, not stretching to fillMaxSize. Seems like a bug in Compose/Accompanyist, no? Any known workarounds?