build-logic: rewrite everything to use full Gradle plugins

This commit is contained in:
Harsh Shandilya 2022-06-10 13:18:52 +05:30
parent 49863d4138
commit 29d63a879e
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
29 changed files with 415 additions and 301 deletions

View file

@ -48,7 +48,9 @@ fun ThemedRichText(
CompositionLocalProvider(
LocalTextStyle provides MaterialTheme.typography.bodyLarge,
LocalContentColor provides MaterialTheme.colorScheme.onBackground,
) { MaterialRichText(modifier) { content() } }
) {
MaterialRichText(modifier) { content() }
}
}
@Composable

View file

@ -207,7 +207,9 @@ fun TagRow(
modifier = modifier,
mainAxisSpacing = 8.dp,
crossAxisSpacing = 8.dp,
) { tags.forEach { tag -> TagText(tag) } }
) {
tags.forEach { tag -> TagText(tag) }
}
}
@Composable