```val PoppinsMedium16 = TextStyle( fontFamily...
# compose-ios
p
Copy code
val PoppinsMedium16 = TextStyle(
    fontFamily = Poppins,
    fontWeight = FontWeight.Medium,
    fontSize = 16.sp,
    platformStyle = PlatformTextStyle(includeFontPadding = false)
)
why this includeFontPadding is not found
a
It’s an Android thing which isn’t supported in skia, so it hasn’t been ported yet.
s
@pers did you find any way around?