Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

react native paper 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
Typescript :: react native paper 
Typescript :: ng2-dnd not working with angular11 
Typescript :: get and set in typescript 
Typescript :: typescript class extends 
Typescript :: latest unity version that supports 32 bit 
Typescript :: ts async function type 
Typescript :: laravel How to print route lists in Blade 
Typescript :: js pop object from id 
Typescript :: typescript one of array 
Typescript :: how to make objects move in roblox studio with a loop 
Typescript :: chakra ui menu open on hover 
Typescript :: padding entre les elements css 
Typescript :: google app scripts loop 
Typescript :: using typescript with vue 
Typescript :: Why do we use fragments in react? 
Typescript :: elements without corner css 
Typescript :: what is hello world in typescript 
Typescript :: how to define types in typescript 
Typescript :: nuxt 3 nuxtServerInit 
Typescript :: classes in ts 
Typescript :: display moment in format dd/mm/yy only last two digits of year 
Typescript :: callback ref typescript 
Typescript :: pass multiple arguments to thread python 
Typescript :: calling funcionts in bash 
Typescript :: run a code only once when two of the same gameobjects collide 
Typescript :: Carbohydrates and fats both 
Typescript :: does i5 7th generation processor supports windows 11 
Typescript :: missing return type on function @typescript-eslint/explicit-function-return-type 
Typescript :: How many arguments does a call to the Math.sqrt method have? 
Typescript :: how to get all posible subb lists in python 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =