react-native TextInput component not showing the http url value properly in the iPhone SE model

66 Views Asked by At

In iPhone SE model, react-native TextInput component not display the http url properly. If I entered the value as https://www.test.com means it display the value only as https:// Issue Screenshot

But If I entered as https://www.test.com/abc it display as https://www.test.com/ not showing abc

Problem is display the value only until the last slash exists.

import { TextInput } from "react-native";
        <TextInput
            {...props}
            value={value}
            editable={true}
            ref={ref => (setRef(ref))}
            onFocus={onFocus}
            onBlur={onBlur}
            onChangeText={handleChange}
            onEndEditing={handleEndEditing}
        />
0

There are 0 best solutions below