TextInput Issue

Hi there, TextInput problem on iOS.
Special Characters If you put Hangul after a special character (?!.), each Hangul is entered.

Here is the code

export default function App() {
  const [state, setstate] = useState("");
  return (
    <View style={styles.container}>
      <StatusBar style="auto" />
      <TextInput
        style={styles.input}
        value={state}
        onChangeText={(text) => setstate(text)}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
  input: {
    color: "#fff",
    width: 200,
    backgroundColor: "#000",
  },
});