Skip to content

Commit 1a16d2f

Browse files
authored
[0.6.x] Bump stable deps (#2537)
* [0.6.x] Bump stable dependencies * update screenshots --------- Co-authored-by: yschimke <[email protected]>
1 parent 4885624 commit 1a16d2f

File tree

382 files changed

+384
-371
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

382 files changed

+384
-371
lines changed

Diff for: ai/sample/wear-prompt-app/src/main/java/com/google/android/horologist/ai/sample/wear/prompt/prompt/SamplePromptScreen.kt

+7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ import androidx.compose.ui.res.stringResource
3535
import androidx.compose.ui.text.SpanStyle
3636
import androidx.compose.ui.text.font.FontFamily
3737
import androidx.compose.ui.text.font.FontStyle
38+
import androidx.compose.ui.text.font.FontWeight
39+
import androidx.compose.ui.text.style.TextDecoration
3840
import androidx.hilt.navigation.compose.hiltViewModel
3941
import androidx.lifecycle.compose.collectAsStateWithLifecycle
4042
import androidx.wear.compose.material.Card
@@ -146,6 +148,11 @@ private fun SampleTypography() = DefaultMarkdownTypography(
146148
ordered = MaterialTheme.typography.body1,
147149
bullet = MaterialTheme.typography.body1,
148150
list = MaterialTheme.typography.body1,
151+
link = MaterialTheme.typography.body1.copy(
152+
fontWeight = FontWeight.Bold,
153+
textDecoration = TextDecoration.Underline,
154+
),
155+
inlineCode = MaterialTheme.typography.body1.copy(fontFamily = FontFamily.Monospace),
149156
)
150157

151158
@Composable

0 commit comments

Comments
 (0)