问题=> https://drive.google.com/open?id=1KwBWMVsj-0PFzt9cLfLuZ9cTvkqjIob8
这是我的代码
export default function TextInp(props) {
const [ansVal, setAnsVal] = useState(props.data.ans);
const answer = (ans) => {
setAnsVal(ans);
props.answer(ans);
};
return (
<View style={styles.view}>
<TextInput
placeholder={props.placeholder}
style={props.free ? styles.freeContainer : styles.container}
onChangeText={(text)=>answer(text)}
defaultValue={ansVal}
/>
</View>
);
}
PS。 TextInput位于ScrollView
内部。我不确定这是否是问题的原因。