Slide 3
Slide 3 text
Simple quote or
statement goes
here. Ideally limit
to four or five
lines max.
Composable functions
Kotlin
100%
@Composable
fun SomeTextView(
text: String
) {
Text(
text = text,
style = DesignTheme.typography.body4,
color = DesignTheme.colors.onSurface,
textAlign = TextAlign.Start
)
}