I worked on IosApp using React Native. I need a form element like select box in HTML. Is there a way to achieve the same result in the components of the active form of React?
Probably closest to what you want, bundled with React Native, http://facebook.imtqy.com/react-native/docs/picker.html
The Picker component will give you a toggle switch on iOS and a drop down list on Android
Alternatively, perhaps this third-party component is closer to what you want: https://github.com/bulenttastan/react-native-list-popover
People are constantly creating new components for React Native, a good place to search: https://react.parts/
If you are looking for something that works on both Android and iOS. I would recommend this. Possible Solution. https://github.com/gs-akhan/react-native-select
First, you need to set the select option using npm:
npm i react-native-option-select --save
Then you must enable
import DropDown, { Select, Option, OptionList, } from 'react-native-option-select';
Source: https://habr.com/ru/post/986857/More articles:Date functions (validation, display, etc.) For partial dates in Django - dateHow to print a React component at the click of a button? - javascript`matplotlib`: what is the purpose of the animated state of the artist? - pythonAre E6 chip protection generators created? - javascriptMatlab: how to represent a real number as binary - matlabCakePHP 3.x: how to change a validation rule on the fly - validationHow do I know if a website is working? - javascriptIterate with hasNext () and next () over an asynchronously generated stream of elements - javaWarning: JDK is not specified for the My Project module. When starting my project in android studio - androidHow to set increment value for Y axis in MPAndroidChart - androidAll Articles