13. How can I center my animation in the app?
LottieView
component inherits its layout behavior from the standard View
component in React Native, and therefore, centering should be done in the same way we would center View
in React Native. This can be done by either using the alignSelf: 'center'
key on the style
property for the LottieView
component or making sure that the parent component has the correct size and uses alignItems: 'center'
in its style
property.
If this approach didn't work, we should make sure the parent component has the right size, as most of the alignment problems derive from that issue.