UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

12 lines 403 B
import { Image, PixelRatio, Platform as RNPlatform, findNodeHandle, View } from "react-native"; import { isRNModule } from "../skia/types"; export const Platform = { OS: RNPlatform.OS, PixelRatio: PixelRatio.get(), resolveAsset: source => { return isRNModule(source) ? Image.resolveAssetSource(source).uri : source.default; }, findNodeHandle, View }; //# sourceMappingURL=Platform.js.map