UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

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;