how to implement screen share in agora video call in react native? in agora documentation provide code but that not an react code example link. so how inegrated in react native. please provide example
Asked
Active
Viewed 944 times
1 Answers
1
The React Native SDK now supports screen-sharing. You can use the startScreenCapture method to share you screen.
Old Answer:
Agora React Native SDK does not support screen sharing out of the box, however you can setup screen sharing by using the underlying Android and iOS SDKs. You can use the Android example that you referenced in your example link and write a bridge to invoke the java method from React-Native.

Ekaansh Arora
- 1,168
- 6
- 15
-
can you provide example how and which method should i connect? – rahul patil Aug 26 '21 at 04:40
-
you can find the entire java implementation in your link, for react native bridge check this https://reactnative.dev/docs/native-modules-android – Ekaansh Arora Aug 26 '21 at 12:01