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

How to rotate font awesome icon in react native?

在我的 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;

您可以使用 style 属性来旋转图标。根据需要更改轮换degree/direction

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