Ahmed na
07/27/2024, 12:05 PMFontFamily
and Font
for web (wasm) ,
The following snippet was actually trying to fetch the fonts every single time it was called, (ofc crashed with memory issues)
@Composable
fun DmSans() = FontFamily(
Font(Res.font.dmsans_regular, weight = FontWeight.W400),
Font(Res.font.dmsans_medium, weight = FontWeight.W600),
)
Daniel Weidensdörfer
07/27/2024, 2:47 PMDaniel Weidensdörfer
07/27/2024, 2:48 PMAhmed na
07/27/2024, 5:00 PM