2017-06-06 56 views
0

我想導出我的組件與本地基地的connectStyle和Redux的connect但到目前爲止沒有運氣。我如何正確地將兩者應用於我的組件?如何在React Native中連接樣式和連接?

實施例:

export default connectStyle('myTheme.myComponent', styles)(myComponent) connect(mapStateToProps, mapDispatchToProps)(myComponent) 

回答

0

嘗試這種情況:

export default connect(mapStateToProps, mapDispatchToProps)(connectStyle('myTheme.myComponent', styles)(myComponent)) 

這將connectconnectStyle返回的部件。 connectStyle返回一個組件,其道具映射到樣式,然後您可以使用它作爲組件將派遣和狀態連接到道具。