i want to only allow text input no copy pasting in text
i've already made it that the numeric keyboard should open but i want to only allow numbers in this input field period
<TextInput
underlineColorAndroid='transparent'
style={styles.TextInputStyle}
placeholder='0.00'
keyboardType={'numeric'}
value={this.state.shippingCharge}
onChangeText={(shippingCharge) => this.setState({ shippingCharge })}
/>