|
@@ -31,21 +31,6 @@ class ExampleCaptureOnMountManually extends Component {
|
31
|
31
|
);
|
32
|
32
|
}
|
33
|
33
|
}
|
34
|
|
-// ScrollView
|
35
|
|
-class ExampleCaptureScrollViewContent extends Component {
|
36
|
|
- onCapture = uri => {
|
37
|
|
- console.log("do something with ", uri);
|
38
|
|
- }
|
39
|
|
- render() {
|
40
|
|
- return (
|
41
|
|
- <ScrollView>
|
42
|
|
- <ViewShot onCapture={this.onCapture} captureMode="mount">
|
43
|
|
- <Text>...The Scroll View Content Goes Here...</Text>
|
44
|
|
- </ViewShot>
|
45
|
|
- </ScrollView>
|
46
|
|
- );
|
47
|
|
- }
|
48
|
|
-}
|
49
|
34
|
|
50
|
35
|
// alternative
|
51
|
36
|
class ExampleCaptureOnMountSimpler extends Component {
|
|
@@ -77,6 +62,22 @@ class ExampleWaitingCapture extends Component {
|
77
|
62
|
);
|
78
|
63
|
}
|
79
|
64
|
}
|
|
65
|
+
|
|
66
|
+// capture ScrollView content
|
|
67
|
+class ExampleCaptureScrollViewContent extends Component {
|
|
68
|
+ onCapture = uri => {
|
|
69
|
+ console.log("do something with ", uri);
|
|
70
|
+ }
|
|
71
|
+ render() {
|
|
72
|
+ return (
|
|
73
|
+ <ScrollView>
|
|
74
|
+ <ViewShot onCapture={this.onCapture} captureMode="mount">
|
|
75
|
+ <Text>...The Scroll View Content Goes Here...</Text>
|
|
76
|
+ </ViewShot>
|
|
77
|
+ </ScrollView>
|
|
78
|
+ );
|
|
79
|
+ }
|
|
80
|
+}
|
80
|
81
|
```
|
81
|
82
|
**Props:**
|
82
|
83
|
|