未显示搜索栏图标| React native

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

搜索图标被其他图标代替。如何在SearchBar中放置图标(React-native-elements || React-native)图标的屏幕截图。

enter image description here

react-native icons uisearchbar
1个回答
0
投票

这里是文档中的代码:

import { Icon } from 'react-native-elements'

<Icon
  name='rowing' />

<Icon
  name='g-translate'
  color='#00aced' />

<Icon
  name='sc-telegram'
  type='evilicon'
  color='#517fa4'
/>

<Icon
  reverse
  name='ios-american-football'
  type='ionicon'
  color='#517fa4'
/>

<Icon
  raised
  name='heartbeat'
  type='font-awesome'
  color='#f50'
  onPress={() => console.log('hello')} />

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