react-native-skia
react-native-skia copied to clipboard
measureText not implemented for React Native Web
Description
I'm in need of the measureText function in the web implementation, what would be required to make it happen?
I'm using getTextWidth, although it's soon to be deprecated. Would be nice if this was left in for web.
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?
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.