onSelectionChange event is not triggered on android device
<PasteInput
onPaste={onPaste}
ref={ref}
value={text}
onChangeText={setText}
multiline
textBreakStrategy='simple'
autoCorrect={false}
importantForAutofill='no'
cursorColor={theme.color.blue_600}
onSelectionChange={(e) => {
console.log(e) // its not triggered on android device
}}
/>