TL;DR Always use StyleSheet.create() when you can.
The answer by Nico is correct, but there is more to it.
To summarize:
- It validates the styles as mentioned by Nico
- As mentioned in the documentation:
Making a stylesheet from a style object makes it possible to refer to it by ID instead of creating a new style object every time.
- Also mentioned in the documentation:
It also allows to send the style only once through the bridge. All subsequent uses are going to refer an id (not implemented yet).
As you might know, sending the data across the bridge is a very costly operation that has significant impact on the performance of the application. So, using StyleSheet.create() you reduce the strain on the bridge.