Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

select field in react native

// https://www.npmjs.com/package/react-native-picker-select
// npm install react-native-picker-select

//# React Native users
//npm install @react-native-picker/picker
//npx pod-install

//# Expo
//expo install @react-native-picker/picker
import RNPickerSelect from 'react-native-picker-select';

export const Dropdown = () => {
    return (
        <RNPickerSelect
            onValueChange={(value) => console.log(value)}
            items={[
                { label: 'Football', value: 'football' },
                { label: 'Baseball', value: 'baseball' },
                { label: 'Hockey', value: 'hockey' },
            ]}
        />
    );
};
Comment

react native select option

// use this package easy to use and more flexible 
https://www.npmjs.com/package/react-native-element-dropdown

 yarn add react-native-element-dropdown
Comment

react native select

// noice library to use with react native paper

import { PaperSelect } from 'react-native-paper-select';

// ...

const [colors, setColors] = useState({
  value: '',
  list: [
    { _id: '1', value: 'BLUE' },
    { _id: '2', value: 'RED' },
    { _id: '3', value: 'GREEN' },
    { _id: '4', value: 'YELLOW' },
    { _id: '5', value: 'BROWN' },
    { _id: '6', value: 'BLACK' },
    { _id: '7', value: 'WHITE' },
    { _id: '8', value: 'CYAN' },
  ],
  selectedList: [],
  error: '',
});

<PaperSelect
  label="Select Colors"
  value={colors.value}
  onSelection={(value: any) => {
    setColors({
      ...colors,
      value: value.text,
      selectedList: value.selectedList,
      error: '',
    });
  }}
  arrayList={[...colors.list]}
  selectedArrayList={colors.selectedList}
  errorText={colors.error}
  multiEnable={true}
  textInputMode="flat"
  searchStyle={{ iconColor: 'red' }}
/>;
Comment

PREVIOUS NEXT
Code Example
Javascript :: add two float numbers in javascript 
Javascript :: datatable add filter dropdown 
Javascript :: Javascript using for loop to loop through an array 
Javascript :: how to loop over an array in js 
Javascript :: how to set expire time of jwt token in node js 
Javascript :: remove duplicate array 
Javascript :: how to pass function as a props in react in functional components 
Javascript :: express mysql sessions 
Javascript :: javascript fetch 
Javascript :: why we use mongoose 
Javascript :: are you sure you want to close this window javascript 
Javascript :: mogoosejs 
Javascript :: why bigint js 
Javascript :: get query params 
Javascript :: add icon to angular 
Javascript :: react native add bottom tab and drawer menu 
Javascript :: bind in javascript 
Javascript :: send params in nested screen 
Javascript :: delete request from the script to html 
Javascript :: math floor javascript 
Javascript :: Material-ui add box icon 
Javascript :: nodejs class template export 
Javascript :: vue dispatch action at tab close 
Javascript :: how to navigate to another page with settimeout reactjs 
Javascript :: remove btn 
Javascript :: how to disable security in jhipster 
Javascript :: sails setup 
Javascript :: js check if array contains value 
Javascript :: acer swift 5 
Javascript :: webpack dev srcipt 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =