diff --git a/.vs/iut-expo-starter/FileContentIndex/26bb8f95-1889-4e51-8030-dd44af0da4f7.vsidx b/.vs/iut-expo-starter/FileContentIndex/26bb8f95-1889-4e51-8030-dd44af0da4f7.vsidx new file mode 100644 index 0000000..100031d Binary files /dev/null and b/.vs/iut-expo-starter/FileContentIndex/26bb8f95-1889-4e51-8030-dd44af0da4f7.vsidx differ diff --git a/.vs/iut-expo-starter/FileContentIndex/57eaa9c3-72cb-4bc5-a6d7-8a7f3513fafc.vsidx b/.vs/iut-expo-starter/FileContentIndex/57eaa9c3-72cb-4bc5-a6d7-8a7f3513fafc.vsidx deleted file mode 100644 index fc7c96b..0000000 Binary files a/.vs/iut-expo-starter/FileContentIndex/57eaa9c3-72cb-4bc5-a6d7-8a7f3513fafc.vsidx and /dev/null differ diff --git a/.vs/iut-expo-starter/FileContentIndex/5cdbe43f-5b13-4cf7-b1e5-aeb3a934826b.vsidx b/.vs/iut-expo-starter/FileContentIndex/5cdbe43f-5b13-4cf7-b1e5-aeb3a934826b.vsidx new file mode 100644 index 0000000..da8add1 Binary files /dev/null and b/.vs/iut-expo-starter/FileContentIndex/5cdbe43f-5b13-4cf7-b1e5-aeb3a934826b.vsidx differ diff --git a/.vs/iut-expo-starter/FileContentIndex/96ad2cb2-fbcb-4d26-a619-e41bd8b27c2f.vsidx b/.vs/iut-expo-starter/FileContentIndex/96ad2cb2-fbcb-4d26-a619-e41bd8b27c2f.vsidx deleted file mode 100644 index 079ec74..0000000 Binary files a/.vs/iut-expo-starter/FileContentIndex/96ad2cb2-fbcb-4d26-a619-e41bd8b27c2f.vsidx and /dev/null differ diff --git a/.vs/iut-expo-starter/FileContentIndex/ab9ac88f-0ede-4229-9198-026149e48485.vsidx b/.vs/iut-expo-starter/FileContentIndex/ab9ac88f-0ede-4229-9198-026149e48485.vsidx new file mode 100644 index 0000000..6da0b4c Binary files /dev/null and b/.vs/iut-expo-starter/FileContentIndex/ab9ac88f-0ede-4229-9198-026149e48485.vsidx differ diff --git a/.vs/iut-expo-starter/FileContentIndex/c1e56655-c906-4d50-85cf-87c5dac77327.vsidx b/.vs/iut-expo-starter/FileContentIndex/c1e56655-c906-4d50-85cf-87c5dac77327.vsidx new file mode 100644 index 0000000..2323cfe Binary files /dev/null and b/.vs/iut-expo-starter/FileContentIndex/c1e56655-c906-4d50-85cf-87c5dac77327.vsidx differ diff --git a/.vs/iut-expo-starter/FileContentIndex/c52f95f9-f04c-4016-b700-f38c1fc9073c.vsidx b/.vs/iut-expo-starter/FileContentIndex/c52f95f9-f04c-4016-b700-f38c1fc9073c.vsidx deleted file mode 100644 index d10a75e..0000000 Binary files a/.vs/iut-expo-starter/FileContentIndex/c52f95f9-f04c-4016-b700-f38c1fc9073c.vsidx and /dev/null differ diff --git a/.vs/iut-expo-starter/FileContentIndex/e764a80d-e03a-436c-82d3-f160e33e6c50.vsidx b/.vs/iut-expo-starter/FileContentIndex/e764a80d-e03a-436c-82d3-f160e33e6c50.vsidx deleted file mode 100644 index 20bd09a..0000000 Binary files a/.vs/iut-expo-starter/FileContentIndex/e764a80d-e03a-436c-82d3-f160e33e6c50.vsidx and /dev/null differ diff --git a/.vs/iut-expo-starter/v17/.wsuo b/.vs/iut-expo-starter/v17/.wsuo index c1c472c..e357c6d 100644 Binary files a/.vs/iut-expo-starter/v17/.wsuo and b/.vs/iut-expo-starter/v17/.wsuo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index 72d3d2d..c2f0fa3 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/components/DrawingCanva.tsx b/components/DrawingCanva.tsx new file mode 100644 index 0000000..055f1c8 --- /dev/null +++ b/components/DrawingCanva.tsx @@ -0,0 +1,61 @@ +import React, { useRef } from 'react'; +import { SketchCanvas, SketchCanvasRef } from 'rn-perfect-sketch-canvas'; +import { StyleSheet, Button, View } from 'react-native'; +import { SvgUri } from 'react-native-svg'; + + +type DrawingCanvaProps = { + backgroundImage: string; +} + +const DrawingCanva = (props: DrawingCanvaProps) => { + + const canvasRef = useRef(null); + + + + return ( + + + + + +