web-dev-qa-db-ja.com

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 propを使用できます。必要に応じて回転の方向/回転方向を変更してください

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