Merge pull request #935 from vector-im/feature/bma/noWarnings

Code quality: warnings are errors and enable more Detekt rules.
This commit is contained in:
Benoit Marty 2023-07-21 15:52:05 +02:00 committed by GitHub
commit b20448bf08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
82 changed files with 170 additions and 229 deletions

View file

@ -29,7 +29,7 @@ fun Modifier.centerBottomEdge(scope: BoxScope): Modifier = with(scope) {
Modifier.align { size, space, _ ->
IntOffset(
x = (space.width - size.width) / 2,
y = (space.height / 2) - size.height,
y = space.height / 2 - size.height,
)
}
)