我如何在 React Native 中使用 connectStyle 和 connect?

How do I connectStyle and connect in React Native?

我想用 native-base 的 connectStyle 和 Redux 的 connect 导出我的组件,但到目前为止还没有成功。如何将两者正确应用到我的组件?

示例:

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

试试这个:

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

这将 connectconnectStyle 返回的组件。 connectStyle returns 一个将 props 映射到样式的组件,然后您可以将其用作将 dispatch 和 state 连接到 props 的组件。