@atrash.ala/lmksystems-input

1.0.5 • Public • Published

React Native Select Input

Installation

Installation can be done through npm or yarn:

npm install @atrash.ala/lmksystems-input
# or
npm install @atrash.ala/lmksystems-input --force

Usage

Import the SelectInput and wrap you content inside of it.

import React from 'react'
import { View } from 'react-native'
import SelectInput from 'lmksystems-input'

class Component extends React.Component {
  render() {
    const options = [{ value: 0, label: '0' }]

    return (
      <View>
        <SelectInput value={0} options={options} />
      </View>
    )
  }
}

install dependencies with

npm install

or

yarn install

run the project with

react-native run-ios

or

react-native run-android


## License

[MIT.](https://github.com/markuswind/react-native-select-input-ios/blob/master/LICENSE)

Dependencies (0)

    Dev Dependencies (11)

    Package Sidebar

    Install

    npm i @atrash.ala/lmksystems-input

    Weekly Downloads

    1

    Version

    1.0.5

    License

    MIT

    Unpacked Size

    1.15 MB

    Total Files

    44

    Last publish

    Collaborators

    • atrash.ala