Skip to content

Instantly share code, notes, and snippets.

@belinwu
Forked from AsadLeo14/Type.kt
Created November 3, 2022 02:39
Show Gist options
  • Save belinwu/57fa62efb6f6cfe7bd96f15fcb52a06a to your computer and use it in GitHub Desktop.
Save belinwu/57fa62efb6f6cfe7bd96f15fcb52a06a to your computer and use it in GitHub Desktop.
Access custom font from assets in Jetpack Compose
@OptIn(ExperimentalTextApi::class)
@Composable
fun fontFamily() = FontFamily(
Font(LocalContext.current.assets,"myfont.ttf")
)
@Composable
fun typography() = Typography(
h1 = TextStyle(
fontFamily = fontFamily(),
fontWeight = FontWeight.Bold,
fontSize = 30.sp
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment