Skip to content

avishain/react-native-combobox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-combobox

Supports Android and iOS    MIT License

Customizable combo-box for react native apps

Please let me know if you encounter any issues or if you have any imporvements suggestion, comments, etc..



Getting started

npm i react-native-combobox



Usage

Example

Example - code

import ComboBox from 'react-native-combobox';
    const [selectedValue, setSelectedValue] = useState('');
    
    const values = [
        'option 1',
        'option 2',
        'option 3',
        'option 4',
        'option 5'
    ];

    return (
        <View style={{ flex: 1, paddingVertical: 80, paddingHorizontal: 40, justifyContent: 'space-between' }}>
            <ComboBox
                values={values}
                onValueSelect={setSelectedValue}
            />
            <Text>selected value:          {values[selectedValue]}</Text>
        </View>
    );

API - Combobox (default import)

Property Type Required Default Description
values Array<string> yes - array of strings
onValueSelect function yes - returns the selected index
fontFamily string (font) no - -
textColor string (color) no - -
backgroundColor string (color) no - -
fontSize number no - -
defaultValue string no ' ' -
rtl boolean no false -



License

This project is licensed under the MIT License

About

Customizable combo box for react native apps. Compatible with Expo.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published