UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

14 lines (12 loc) 317 B
import { SkiaBaseWebView } from "./SkiaBaseWebView"; export class SkiaPictureView extends SkiaBaseWebView { constructor(props) { super(props); } renderInCanvas(canvas) { if (this.props.picture) { canvas.drawPicture(this.props.picture); } } } //# sourceMappingURL=SkiaPictureView.web.js.map