Use the Rive component
mainThe Rive component provides a bridge to the native Rive runtime on iOS and Android. You can load animations using either a local resourceName (a filename without the .riv extension) or a remote url. Note that you cannot provide both simultaneously.
Basic usage:
import Rive from 'rive-react-native';
function App() {
return <Rive resourceName="truck_v7" />;
}