common: run spotless

This commit is contained in:
Harsh Shandilya 2021-08-06 18:04:21 +05:30
parent 80a985bf2d
commit ba1ae16e87
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 18 additions and 25 deletions

View file

@ -15,13 +15,14 @@ actual fun NetworkImage(
modifier: Modifier,
) {
Image(
painter = rememberImagePainter(
data = url,
builder = {
transformations(CircleCropTransformation())
crossfade(true)
},
),
painter =
rememberImagePainter(
data = url,
builder = {
transformations(CircleCropTransformation())
crossfade(true)
},
),
contentDescription = contentDescription,
modifier = Modifier.then(modifier),
)