Need help, i was just placed material-ui textfield in react native and I have set:
keyboardType: {numeric}
Its works fine but when I entered 30,000 it's showing NaN I want to restrict comma(,) and dot(.) in keyboard. When I type amount it will calculate and show result in text.
<TextField
onChange={(event)=>this.handle(event.nativeEvent.text)}
label='Amount'
value={this.state.amount}
keyboardType = 'numeric'
enablesReturnKeyAutomatically={true}>
</TextField>