作者:栾先益_319 | 来源:互联网 | 2023-08-13 14:54
创建一个将iconColor和iconSize作为参数并返回StyleSheet对象的类
// styles.js
export default class StyleSheetFactory {
static getSheet(iconSize, iconColor) {
return StyleSheet.create({
icon : {
color: iconColor,
fontSize: iconSize
}
})
}
}
// index.js
render() {
let myStyleSheet = StyleSheetFactory.getSheet(64, 'red')
}