【发布时间】:2021-03-08 06:53:36
【问题描述】:
我已经开始反应原生了。我对使用 react-native-paper 依赖项的 Searchbar 组件有疑问。
我已经安装了
"react-native-paper": "^4.7.2",
"react-native-vector-icons": "^8.1.0"
依赖项。我使用过 Searchbar 组件,例如,
<Searchbar
style={styles.searchbarMargin}
placeholder="Search"
icon={()=><MaterialCommunityIcon name="magnify" size={20}/>}
/>
import 语句是
import { Searchbar } from 'react-native-paper';
import MaterialCommunityIcon from 'react-native-vector-icons/MaterialCommunityIcons';
我已经添加了
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
在 build_gradle 文件中仍然没有显示 放大 图标。帮帮我。
注意:我已经清理了npm 和react-native 的缓存并卸载了node_modules 文件夹并再次安装了软件包,但仍然无法正常工作。
提前感谢您的帮助。
【问题讨论】:
标签: react-native react-native-paper