Home > database >  How to draw over a picture in React Native?
How to draw over a picture in React Native?

Time:11-06

I have an app that uses expo-camera to take a picture. I would like to implement a function that would let user to draw over a taken picture. What is the best way to achieve this?

What have I tried?

  • react-native-sketch-canvas (looks like this component is no longer supported)

CodePudding user response:

Try one of these :

  1. @flyskywhy/react-native-gcanvas (Last publish - a month ago)
  2. @lighthouse/react-native-sketch-canvas (Last publish - 9 months ago)
  3. react-native-canvas (Last publish - a year ago)

CodePudding user response:

You can use React native Skia from shopify

Here is a blog that you may find useful

  • Related