I am currently using react native image picker library to open camera , and I would like to add a message in the form of a snack bar or a toast message on top of the opened camera using the following function:
let result = await ImagePicker.launchCameraAsync({ allowsEditing: true, mediaTypes: ImagePicker.MediaTypeOptions.All, base64: true, //return base64 data., aspect: [1, 1], quality: 0.5 });
is it possible to do so using this library? to add a design or a view on top of current camera? or even the image taken by this camera from the library?