UNPKG

victory-native

Version:

[![Victory Native](https://oss.nearform.com/api/banner?badge=victory&text=victory+native&bg=9c2f1e)](https://commerce.nearform.com/open-source/victory-native/)

7 lines (5 loc) 234 B
import type { SkFont } from "@shopify/react-native-skia"; export const getFontGlyphWidth = (text: string, font?: SkFont | null) => font ?.getGlyphWidths(font.getGlyphIDs(text)) .reduce((sum, value) => sum + value, 0) ?? 0;