mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 11:47:04 +05:30
build-logic: rewrite everything to use full Gradle plugins
This commit is contained in:
parent
49863d4138
commit
29d63a879e
29 changed files with 415 additions and 301 deletions
|
@ -48,7 +48,9 @@ fun ThemedRichText(
|
|||
CompositionLocalProvider(
|
||||
LocalTextStyle provides MaterialTheme.typography.bodyLarge,
|
||||
LocalContentColor provides MaterialTheme.colorScheme.onBackground,
|
||||
) { MaterialRichText(modifier) { content() } }
|
||||
) {
|
||||
MaterialRichText(modifier) { content() }
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue