首页 > 解决方案 > 警告:道具类型失败:提供给“文本”的道具样式键“tintColor”无效

问题描述

当我使用下面的代码时,我遇到了以下错误:

tintColor警告:失败的道具类型:提供给的无效 props.style 键Text

<Text
style={{
  tintColor: focused ? 'white' : 'black',
  fontSize: 14,
  fontFamily: 'SF Pro Text',
  marginBottom: 15
  }}
>

标签: reactjsreact-nativenpm

解决方案


tintColor应该只适用于<Image>组件


推荐阅读