nmfisher / flutter_filament

3D rendering layer for Flutter/Filament
Other
44 stars 7 forks source link

Flutter embedding performance #5

Open nmfisher opened 7 months ago

nmfisher commented 7 months ago

I'm sure we can make things a lot faster by avoiding the Texture widget unless absolutely needed. e.g. I suspect the overwhelming use case will be a Flutter UI on top of a rendering viewport (so the rendering surface will always be the bottom layer). Would be nice to accommodate this.

nmfisher commented 2 months ago

Best case is probably an option to create our own embedder where Flutter renders into its own render target which is then imported/overlaid on the native/Filament side.

This is doable, but probably not as a Flutter package (?).