您好我在我的反应原生应用程序中使用TextInput
。我想点击TextInput
打开日期对话框。我想到它是否允许听取焦点事件然后它可能对我有用。
我没有找到任何关于此的消息。有没有人知道如何在反应原生的TextInput
上设置焦点监听器?
<TextInput
style={{
height: 40,
borderColor: "gray",
borderWidth: 1,
marginTop: 8
}}
underlineColorAndroid="transparent"
placeholder={strings.schedule_date}
onKeyPress={keyPress => console.log(keyPress)}
/>