在我的 react-native 应用程序中,我想将旋转徽标呈现为屏幕的正确标题。
<Stack.Screen
name="About"
component={About}
options={{headerRight: () => <SpinnerIcon />}}
/>
微调器组件返回一个Animated.Image
<Animated.Image
source={require('../img/reactLogoTwo.png')}
style={[{width: 50, height: 50}, {transform: [{rotate}]}]}
/>
我保存在img
文件夹中的图像具有透明背景(从此处下载),但动画图像呈现为白色背景。
注意:添加backgroundColor: 'transparent'
不起作用。