@logo-rn/logo-numeric-edit
v0.2.11
Published
<LogoNumericEdit/> allows user to enter and edit text with type of numbers
Downloads
13
Readme
@logo-rn/logo-numeric-edit
allows user to enter and edit text with type of numbers
Installation
Install the component:
npm i @logo-rn/logo-numeric-edit -s
Usage
Once installed, import the component in your application:
import {LogoNumericEdit} from '@logo-rn/logo-numeric-edit';
const [value, setvalue] = useState("");
//...
<LogoNumericEdit
maxValue={100}
id="NUMERIC_EDIT"
value={value}
onChangeText={setValue}
/>