Skip to content

Commit

Permalink
Add basic HTML text styling example (#389)
Browse files Browse the repository at this point in the history
* Add basic HTML text styling example

* Apply Spotless

* Add region tags

---------

Co-authored-by: jakeroseman <jakeroseman@users.noreply.github.com>
  • Loading branch information
jakeroseman and jakeroseman authored Nov 5, 2024
1 parent 81c1a2a commit 1da22a0
Showing 1 changed file with 62 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
* Copyright 2024 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.example.compose.snippets.text

import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.AnnotatedString
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.TextLinkStyles
import androidx.compose.ui.text.font.FontStyle
import androidx.compose.ui.text.fromHtml
import androidx.compose.ui.text.style.TextDecoration
import androidx.compose.ui.tooling.preview.Preview

// [START android_compose_text_annotatedhtmlstringwithlink]
@Composable
fun AnnotatedHtmlStringWithLink(
modifier: Modifier = Modifier,
htmlText: String = """
<h1>Jetpack Compose</h1>
<p>
Build <b>better apps</b> faster with <a href="https://www.android.com">Jetpack Compose</a>
</p>
""".trimIndent()
) {
Text(
AnnotatedString.fromHtml(
htmlText,
linkStyles = TextLinkStyles(
style = SpanStyle(
textDecoration = TextDecoration.Underline,
fontStyle = FontStyle.Italic,
color = Color.Blue
)
)
),
modifier
)
}
// [END android_compose_text_annotatedhtmlstringwithlink]

@Preview(showBackground = true)
@Composable
private fun AnnotatedHtmlStringWithLinkPreview() {
AnnotatedHtmlStringWithLink()
}

0 comments on commit 1da22a0

Please sign in to comment.