分类touchable包裹导致Error: Text strings must be rendered within a <Text> component.
来源:10-5 类别页面的布局和样式(2)

mid_one
2021-08-24
Touchable组件
import React from 'react';
import {TouchableOpacity, TouchableOpacityProps} from 'react-native';
const Touchable: React.FC<TouchableOpacityProps> = React.memo(props => {
return <TouchableOpacity activeOpacity={0.8} {...props} />;
});
export default Touchable;
写回答
2回答
-
可以看一下你的
Touchable
组件吗
你的RN版本是多少呢
022021-08-24 -
今朝
2021-08-24
把这个分号去掉试试
10
相似问题