react-native-skia icon indicating copy to clipboard operation
react-native-skia copied to clipboard

measureText not implemented for React Native Web

Open avaziman opened this issue 1 year ago • 3 comments

Description

I'm in need of the measureText function in the web implementation, what would be required to make it happen?

avaziman avatar Sep 19 '24 12:09 avaziman

I'm using getTextWidth, although it's soon to be deprecated. Would be nice if this was left in for web.

whistlecube avatar Sep 19 '24 19:09 whistlecube

I think it doesn't work in react native skia for mobile as well. I was trying to use this function but It wasn't returning anything.

whistlecube can you please provide a code sample how you use getTextWidth?

kokosky93 avatar Sep 27 '24 22:09 kokosky93

In case anyone else comes across this, I just used font.getGlyphWidths(font.getGlyphIDs(text)).reduce((acc, width) => acc + width, 0) which seems to work on web.

sdcooke avatar Feb 06 '25 22:02 sdcooke