我正在使用native wind和react native paper与打印脚本。我想添加“className”和“tw”属性到我的纸张视图。
我已经使用如下声明将其添加到其他视图中:
import "react-native";
declare module "react-native" {
interface FlatListProps<ItemT> extends VirtualizedListProps<ItemT> {
className?: string;
tw?: string;
}
}
我的视图有“className”和“tw”,但对于纸视图,这不起作用:
import "react-native-paper"
declare module "react-native-paper" {
interface FABProps {
className? : string;
tw?: string;
}
}
并且我的FAB视图仍然没有“类名”或“tw”
我该怎么补救呢?
1条答案
按热度按时间6l7fqoea1#
可以使用
styled
设置任何构件的样式: