Stefan Oltmann
11/06/2025, 10:30 AM@Composable
private fun RobotoFontFamily(): FontFamily = FontFamily(
Font(
resource = Res.font.roboto_regular_hinted,
weight = FontWeight.Normal,
style = FontStyle.Normal
),
Font(
resource = Res.font.roboto_bold_hinted,
weight = FontWeight.Bold,
style = FontStyle.Normal
),
Font(
resource = Res.font.roboto_italic_hinted,
weight = FontWeight.Normal,
style = FontStyle.Italic
)
)Mark
11/07/2025, 9:27 AMloadingStrategy?