Hi, is there a way to set variation (weight, width...
# multiplatform
d
Hi, is there a way to set variation (weight, width, etc) of variable fonts. The font function from
org.jetbrains.compose.resources.Font
doesn't look like it supports this while the android one does (but that obvisously doesn't work for KMP)?
Copy code
@Composable
public expect fun Font(
    resource: FontResource,
    weight: FontWeight = FontWeight.Normal,
    style: FontStyle = FontStyle.Normal
): Font
Looks like suppport was added here, but it's not part of any releases yet.