@logo-rn/logo-text-edit
v0.2.8
Published
<LogoTextEdit/> allows user to enter and edit text.
Downloads
33
Readme
@logo-rn/logo-text-edit
allows user to enter and edit text.
Installation
Install the component:
npm i @logo-rn/logo-text-edit -s
Usage
Once installed, import the component in your application:
import {LogoTextEdit} from '@logo-rn/logo-text-edit';
const [value, setvalue] = useState("");
//...
<LogoTextEdit
id="TextEdit"
text={value}
onChangeText={setvalue}
watermarkText={"placeholder"} watermarkEnabled
/>