Source set: Common
@Deprecated(
"LocalFontLoader is replaced with LocalFontFamilyResolver",
replaceWith = ReplaceWith("LocalFontFamilyResolver"),
)
public val LocalFontLoader:
ProvidableCompositionLocal<
androidx.compose.ui.text.font.Font.ResourceLoader
> =
computedDefaultOf("LocalFontLoader") {
@Suppress("DEPRECATION") LocalOwner.currentValue.fontLoader
}
The CompositionLocal to provide platform font loading methods.