TypeScale
Deprecated
Typescale is deprecated. Use the new SkapaTypography system instead.
Skapa type sets, with long and short line height text. Represented by SkapaFont class
See also
Samples
SkapaTheme2(
darkTheme = isSystemInDarkTheme(),
fontFamily = NotoIkeaLatin, // Add your desired font family
typeScale = SkapaTypeScale.SmallScreen, // Select the desired type scale depending on what size device you are designing for
baseFontSize = 14.sp // Add your desired base font size, increasing will scale all typesets accordingly
) {
Column {
Text(
text = "Skapa Display M",
style = SkapaTheme.typography.displayM
)
Text(
text = "Skapa heading M",
style = SkapaTheme.typography.headingM,
modifier = Modifier.semantics { heading() }
)
Text(
text = "Skapa statement M",
style = SkapaTheme.typography.statementM
)
Text(
text = "Skapa body M",
style = SkapaTheme.typography.bodyM
)
Text(
text = "Skapa label M",
style = SkapaTheme.typography.labelM
)
Text(
text = "Skapa caption M",
style = SkapaTheme.typography.captionM
)
}
}Content copied to clipboard