João Guilherme
Results
2
comments of
João Guilherme
@mjm918 I solved this issue using the following workaround: ``` onChangeText={(maskedText, rawText) => { // Add this line maskedText = parseInt(maskedText.replace(/\.|,|RM/g, ""), 10) / 100; this.setState({ allPrice: maskedText, allPriceRaw: rawText,...
Estou com o mesmo problema. @KokeroO conseguiu resolver?