Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233
  1. import ViewShot,{ captureScreen,captureRef } from "react-native-view-shot";
  2. // import { captureScreen,captureRef } from "react-native-view-shot";
  3. class ExampleCaptureOnMountManually extends Component {
  4. componentDidMount () {
  5. this.refs.viewShot.capture().then(uri => {
  6. console.log("do something with ", uri);
  7. });
  8. }
  9. render() {
  10. return (
  11. <ViewShot ref="viewShot" options={{ format: "jpg", quality: 0.9 }}>
  12. <Text>...Something to rasterize...</Text>
  13. </ViewShot>
  14. );
  15. }
  16. }
  17. export {ExampleCaptureOnMountManually}