如何在React Native中旋转字体真棒图标?

时间:2019-11-05 06:47:07

标签: react-native react-native-android stylesheet font-awesome-5

在我的react native应用程序中,我有一个很棒的字体图标。我要旋转它。需要帮助。

import React from 'react'
import { View  } from 'react-native';
import Icon from 'react-native-vector-icons/FontAwesome5';

const InfoBox = () => {
    return (
          <View >
            <Icon name={'hand-holding-usd'} size={20}/>
          </View>

    )
}

export default InfoBox;

1 个答案:

答案 0 :(得分:4)

您可以使用style道具旋转图标。根据需要更改旋转的角度/方向

<Icon name={'hand-holding-usd'}
      size={20}
      style={{transform: [{rotateY: '180deg'}]}}/>