react-native-currency-input icon indicating copy to clipboard operation
react-native-currency-input copied to clipboard

Issue with text wrapping in FakeCurrencyInput

Open JoshMBBI opened this issue 11 months ago • 0 comments

There does not seem to be a way to disable text wrapping when using the FakeCurrencyInput. Multiline={false} and numberOfLines={1} both have no impact. image

<FakeCurrencyInput value={amount} onChangeValue={e => handleAmountChange(e)} prefix="$" delimiter="," precision={2} separator="." minValue={0} maxValue={null} style={{fontsize: 45}} multiline={false} numberOfLines={1} />

JoshMBBI avatar Mar 15 '24 19:03 JoshMBBI