CustomFontFamilySample
@Composable
fun CustomFontFamilySample() {
val fontFamily =
FontFamily(
Font(
resId = R.font.my_font_400_regular,
weight = FontWeight.W400,
style = FontStyle.Normal,
),
Font(
resId = R.font.my_font_400_italic,
weight = FontWeight.W400,
style = FontStyle.Italic,
),
)
Text(text = "Demo Text", fontFamily = fontFamily)
}