fix(android): ensure pull refresh indicator is visible

This commit is contained in:
Harsh Shandilya 2024-09-02 00:31:22 +05:30
parent 0fe83e8583
commit 4ab76c60bb
2 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Fixed
- Pull to refresh indicator is no longer hiding behind the top app bar
## [1.50.0] - 2024-08-30
### Fixed

View file

@ -63,7 +63,7 @@ fun NetworkPosts(
PullToRefreshDefaults.Indicator(
state = state,
isRefreshing = refreshLoadState == LoadState.Loading,
modifier = Modifier.align(Alignment.TopCenter),
modifier = Modifier.align(Alignment.TopCenter).padding(contentPadding),
)
},
) {