I have a web app with Typescript React. I'm using the builtin TextInput, like this:
return (<View style={[ style.inputView, {borderColor: primaryColor, height: 40} ]}><TextInput value={message} onChangeText={(text) => onChangeMessage(text)} style={{ borderRadius: 10, ... }} /> { handle the submit with onPress }</View>);
I guess under the hood the TextInput has a contextmenu. Is there a way I can open that menu from the code, without a mouse click event?