React Native SDK ⁠-⁠ tracking inputs

Tracker will listen to value change event (debounced) and send resulting value to OpenReplay backend.

SDK 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"
  />

// ...

If you have any questions about this process, feel free to reach out to us on our Slack or check out our Forum.