keyboard-avoidable
v1.0.9
Published
keyboard avoidable item for react native
Downloads
4
Readme
keyboard-avoidable
- avoidable list forms for react native
Basic Usage
export default function App() {
return (
<Avoidable containerStyle={{ flex: 1, width: "100%" }}>
{[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15].map((num) => {
return (
<TextInput
key={num}
style={{ width: "90%", alignSelf: "center" }}
mode="outlined"
placeholder={"placeholder"}
label={String(num)}
/>
)
})}
</Avoidable>
)
}
License
MIT