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