Finding documentation for lottie-react-native
Getting stuck when using a third-party library might be a frustrating experience but in the case of lottie-react-native
, there is a large knowledge base accessible on the public repository of the library: https://github.com/lottie-react-native/.
This knowledge base includes the following elements:
- README (https://github.com/lottie-react-native/lottie-react-native/blob/master/README.md): This is the main source of truth for the library. It includes a Getting Started guide and code samples to integrate and use
lottie-react-native
(at a basic level). This file serves as a good introduction to the library and should be the first resource to check when looking for help related to library usage. - API (https://github.com/lottie-react-native/lottie-react-native/blob/master/docs/api.md): This is a good explanation of all properties and methods that can be used in the
LottieView
component to control the animations in our apps. - TypeScript...