Hello World
React Native Skia provides a declarative API using its own React Renderer.
tsx
importReact from "react";import {Canvas ,Circle ,Group } from "@shopify/react-native-skia";constApp = () => {constwidth = 256;constheight = 256;constr =width * 0.33;return (<Canvas style ={{width ,height }}><Group blendMode ="multiply"><Circle cx ={r }cy ={r }r ={r }color ="cyan" /><Circle cx ={width -r }cy ={r }r ={r }color ="magenta" /><Circle cx ={width / 2}cy ={width -r }r ={r }color ="yellow" /></Group ></Canvas >);};export defaultApp ;
tsx
importReact from "react";import {Canvas ,Circle ,Group } from "@shopify/react-native-skia";constApp = () => {constwidth = 256;constheight = 256;constr =width * 0.33;return (<Canvas style ={{width ,height }}><Group blendMode ="multiply"><Circle cx ={r }cy ={r }r ={r }color ="cyan" /><Circle cx ={width -r }cy ={r }r ={r }color ="magenta" /><Circle cx ={width / 2}cy ={width -r }r ={r }color ="yellow" /></Group ></Canvas >);};export defaultApp ;