Created
April 25, 2022 14:47
-
-
Save colinta/467d6abc669935173b0d6014cf74e1ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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