3d models files in flutter

I am working with GLB files for 3D models in Flutter using model_viewer_plus version 1.9.1. The GLB files are loaded each time, and I want to know how to preload the GLB files. Is there a more seamless way to load 3D models (.glb or .obj files)?

I think it can’t be done

The model_viewer_plus package is a great option, but you’re right, loading those GLB files on the fly can be a bit clunky.

Ohoo , thanks for the reply

is there any other alternate option for that

yes we use for 3D models to show in app use .glb file in assets and then like this we use

ModelViewer(
src: ‘assets/models/my_model.glb’,
alt: “3D Model”,
autoRotate: true,
cameraControls: true,
)