mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
[fenix] For https://github.com/mozilla-mobile/fenix/issues/22691 - Add Composables for Primary and Secondary text
This commit is contained in:
parent
5d1146ad11
commit
563c1f8610
59
app/src/main/java/org/mozilla/fenix/compose/Text.kt
Normal file
59
app/src/main/java/org/mozilla/fenix/compose/Text.kt
Normal file
@ -0,0 +1,59 @@
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
package org.mozilla.fenix.compose
|
||||
|
||||
import androidx.compose.material.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.unit.TextUnit
|
||||
import org.mozilla.fenix.theme.FirefoxTheme
|
||||
|
||||
/**
|
||||
* High level element for displaying Text based on the Primary text style.
|
||||
*
|
||||
* @param text The text to be displayed.
|
||||
* @param modifier [Modifier] to apply to this layout node.
|
||||
* @param fontSize The size of glyphs to use when painting the text.
|
||||
* @param maxLines An optional maximum number of lines for the text to span.
|
||||
*/
|
||||
@Composable
|
||||
fun PrimaryText(
|
||||
text: String,
|
||||
modifier: Modifier = Modifier,
|
||||
fontSize: TextUnit,
|
||||
maxLines: Int = Int.MAX_VALUE
|
||||
) {
|
||||
Text(
|
||||
text = text,
|
||||
modifier = modifier,
|
||||
color = FirefoxTheme.colors.textPrimary,
|
||||
fontSize = fontSize,
|
||||
maxLines = maxLines
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* High level element for displaying Text based on the Secondary text style.
|
||||
*
|
||||
* @param text The text to be displayed.
|
||||
* @param modifier [Modifier] to apply to this layout node.
|
||||
* @param fontSize The size of glyphs to use when painting the text.
|
||||
* @param maxLines An optional maximum number of lines for the text to span.
|
||||
*/
|
||||
@Composable
|
||||
fun SecondaryText(
|
||||
text: String,
|
||||
modifier: Modifier = Modifier,
|
||||
fontSize: TextUnit,
|
||||
maxLines: Int = Int.MAX_VALUE,
|
||||
) {
|
||||
Text(
|
||||
text = text,
|
||||
modifier = modifier,
|
||||
color = FirefoxTheme.colors.textSecondary,
|
||||
fontSize = fontSize,
|
||||
maxLines = maxLines
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue
Block a user