This commit is contained in:
tom5079
2021-12-18 00:23:27 +09:00
parent 98fda1a53f
commit 338b789e62
8 changed files with 117 additions and 25 deletions

View File

@@ -185,6 +185,7 @@ class MainActivity : ComponentActivity(), DIAware {
}
) {
Box(Modifier.fillMaxSize()) {
LazyColumn(
Modifier
.fillMaxSize()
@@ -203,6 +204,16 @@ class MainActivity : ComponentActivity(), DIAware {
return Offset.Zero
}
override fun onPostScroll(
consumed: Offset,
available: Offset,
source: NestedScrollSource
): Offset {
return super.onPostScroll(consumed, available, source)
}
}),
contentPadding = PaddingValues(0.dp, 56.dp, 0.dp, 0.dp)
) {