1.0.9 • Published 3 years ago

keyboard-avoidable v1.0.9

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

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

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago