Skip to content

Instantly share code, notes, and snippets.

@colinta
Created April 25, 2022 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colinta/467d6abc669935173b0d6014cf74e1ba to your computer and use it in GitHub Desktop.
Save colinta/467d6abc669935173b0d6014cf74e1ba to your computer and use it in GitHub Desktop.
import {Canvas, Circle} from "@shopify/react-native-skia";
export const HelloWorld = () => {
const r = 128;
return (
<Canvas style={{ flex: 1 }}>
<Circle r={r} cx={r} cy={r} color="cyan" />
</Canvas>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment