我有一个问题,我有一个的TextInput和按钮内KeyboardAwareScrollView
。我希望用户输入一些文本,然后按下使用TouchableOpacity制作的按钮。这会将用户刚刚输入的文本向前发送。
问题是在输入文本后,第一次尝试TextInput只会失去焦点。只有在下次记者尝试是butto n实际压。我怎样才能让按钮在第一次按下时做出react?
我正在使用这个包https://github.com/APSL/react-native-keyboard-aware-scroll-view
我的代码如下:
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'
export default class App extends Component<{}> {
render() {
return (
<KeyboardAwareScrollView>
<TextInput
style={{ width: 100, height: 50, backgroundColor: 'blue' }}
/>
<TouchableOpacity
style={{ backgroundColor: 'red', width: 50, height: 50 }}
/>
</KeyboardAwareScrollView>
);
}
}