React Native SDK - tracking inputs
Tracker will listen to value change event (debounced) and send resulting value to OpenReplay backend.
Adding tracked inputs
Section titled Adding tracked inputsSDK exports ORTrackedInput
which you can use as regular TextInput components.
import OR from '@openreplay/react-native'
// ... your app UI
<OR.ORTrackedInput
style={styles.input}
onChangeText={onChangeNumber}
value={number}
placeholder="important placeholder"
/>
// ...
Have questions?
Section titled Have questions?If you have any questions about this process, feel free to reach out to us on our Slack or check out our Forum.