我可以在 react-native 中使用 react-select 吗?
Can I use react-select in react-native?
我正在尝试在我的 react-native 应用程序中实现一个搜索表单。为此,我需要像 react-select 或 select-2 这样的东西,这两个工具都是为 web 系统制作的,我不知道将它用于 react-native 应用程序是否是个好主意.
我已经尝试在 react-native 中安装和使用它,但这似乎不起作用。
可能最接近您想要的与 React Native 捆绑在一起的是 http://facebook.github.io/react-native/docs/picker.html
选择器组件会在 iOS 上给你一个不倒翁的东西,在 Android
上给你一个下拉菜单
或者,这个第 3 方组件可能更接近您想要的:https://github.com/bulenttastan/react-native-list-popover
来自How to use React native select box
你不能将 select2 或 react-select 与 react-native 一起使用,因为它是基于 DOM 的,因此它只能在 navigator 中工作,而不是在 react 中工作-原生
我发现的最接近的 react-native 等价物是 react-native-multiple-select,您可以在 github 的 https://github.com/toystars/react-native-multiple-select 上找到它或使用 [= 安装它12=]
npm i react-native-multiple-select
import {useSelector} from 'react-redux';
let filter = useSelector(state => {
console.log('K___1 &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& : ', state);
return state;
});
//using this to fetch all store data in redux-Store
我正在尝试在我的 react-native 应用程序中实现一个搜索表单。为此,我需要像 react-select 或 select-2 这样的东西,这两个工具都是为 web 系统制作的,我不知道将它用于 react-native 应用程序是否是个好主意.
我已经尝试在 react-native 中安装和使用它,但这似乎不起作用。
可能最接近您想要的与 React Native 捆绑在一起的是 http://facebook.github.io/react-native/docs/picker.html
选择器组件会在 iOS 上给你一个不倒翁的东西,在 Android
上给你一个下拉菜单或者,这个第 3 方组件可能更接近您想要的:https://github.com/bulenttastan/react-native-list-popover
来自How to use React native select box
你不能将 select2 或 react-select 与 react-native 一起使用,因为它是基于 DOM 的,因此它只能在 navigator 中工作,而不是在 react 中工作-原生
我发现的最接近的 react-native 等价物是 react-native-multiple-select,您可以在 github 的 https://github.com/toystars/react-native-multiple-select 上找到它或使用 [= 安装它12=]
npm i react-native-multiple-select
import {useSelector} from 'react-redux';
let filter = useSelector(state => {
console.log('K___1 &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& : ', state);
return state;
});
//using this to fetch all store data in redux-Store