September 2018
Intermediate to advanced
302 pages
7h 17m
English
In the preceding examples, you may have noticed that styles are tightly coupled to presentational components. Why tightly? Because we explicitly include them by using style={styles.container}, but the styles object is not configurable. We cannot replace any style part with props, and that tightly couples us to the existing implementation. In some cases, this is a desired behavior, but in others, it is not.
You will bump into this problem if you have tried to split code into separate files. How can we fix this issue?
Let ...
Read now
Unlock full access