How to write text as watermark?

Hii all,
I am working on a react-native project.
I want to add Text as a watermark at the end of my screen.
Is there any package in react-native to add a watermark?

Kindly help me with that!

Thanks in advance.

Hello!

If you just need to put some text on screen, use the Text component.

If you need to overlay some text on top of an Image, you can probably get away with absolutely positioning a Text component above an Image component. If you need to save the image, you could later use takeSnapshotAsync to save a region of the screen containing your rendered Text and Image components.

If you need much deeper control over manipulating the graphics on screen, you could try doing this with Expo’s WebGL implementation and then use GLView.takeSnapshotAsync to save a region.

2 Likes

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.