当我尝试导入DropDown react-native时出错

问题描述 投票:0回答:1

[当我尝试导入下拉菜单时

import {Dropdown} from 'react-native-material-dropdown'

给我这个错误:

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS82aVI3ZS5qcGcifQ==” alt =“在此处输入图像描述”>

reactjs react-native react-redux react-native-android dropdown
1个回答
0
投票

这是最新版本中材料下拉列表的问题。您需要在itemTextStyle: Text.propTypes.style文件中注释..\node_modules\react-native-material-dropdown\src\components\dropdown

并在以下位置删除Animated中的Animated.Text.propTypes.style:词缀/索引助手/索引标签/索引react-native-material-textfield并在以上三个文件的每一个中添加import { Animated, Text} from 'react-native';

供参考,请看:https://github.com/n4kz/react-native-material-dropdown/issues/224#issuecomment-614734400

© www.soinside.com 2019 - 2024. All rights reserved.