-
Notifications
You must be signed in to change notification settings - Fork 349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It doesn't work on the new architecture of react native #452
Comments
+1 |
1 similar comment
+1 |
Yes, it's not working with new version |
Same issue as #469 |
+1 🥲 |
capture not working in Android new architecture. |
Here the fix for this library: Please note that this would work only from 0.74.0-rc5 onwards (which is going to be published on Monday) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bug report
Version & Platform
Platform: Android
Expected behavior
I was expecting a capture of the components to be performed.
Actual behavior
Las funciones de captura no devuelven ningun tipo de resultado, no muestran errores y no accionan nada.
El componente "ViewShoot" funciona pero solo se comporta como un componente "View" normal.
Steps to reproduce the behavior
import React, { PureComponent } from "react";
import { Text } from "react-native";
import ViewShot from "react-native-view-shot";
export default class Example extends PureComponent {
constructor(props) {
super(props);
}
private refViewShot = createRef();;
componentDidMount() {
this.refViewShot.current.capture()
.then((uri)=>console.log(uri))
.catch((err)=>console.log(err));
}
render() {
return(
Hello friends!!!
);
}
}
The text was updated successfully, but these errors were encountered: