Congratulations on the project, it is very exciting. I have been following you from your channel with the videos as well as the news letter and always waiting for updates
However, I see a drawback and that is that Rive only so far would allow you to implement designs for static pages, like the ones you show in your videos. For applications where changing content must be used and is updated such as a list of cards or comments, I cannot see how to implement it efficiently.
The way I tried to approach it is by modifying the BaseExpressionView class or creating others that extend it so that we use a Listview or some dynamic flutter widget that allows us to maintain a single file but recreate the page design by sections where each section has its own ArtBoard. This could generate pages with more complex designs, such as those that have several sections integrated with Rows.
But here are some considerations:
-
Memory Consumption: Each artboard loaded into memory is an instance with its own resources. If you have multiple artboards active at the same time, it can significantly increase the memory usage of your application.
-
Rendering Performance: Rendering multiple artboards might reduce the frame rate, especially if these artboards contain complex animations or are displayed on lower-end devices. This can make the application feel slower and less responsive.
-
Resource Management: Managing multiple artboards can complicate resource management, as each artboard might need to be loaded, initialized, and disposed of separately.
Please correct me or explain to me what other approach could be applied or what solution you would do. Thank you very much and Regards
Congratulations on the project, it is very exciting. I have been following you from your channel with the videos as well as the news letter and always waiting for updates
However, I see a drawback and that is that Rive only so far would allow you to implement designs for static pages, like the ones you show in your videos. For applications where changing content must be used and is updated such as a list of cards or comments, I cannot see how to implement it efficiently.
The way I tried to approach it is by modifying the BaseExpressionView class or creating others that extend it so that we use a Listview or some dynamic flutter widget that allows us to maintain a single file but recreate the page design by sections where each section has its own ArtBoard. This could generate pages with more complex designs, such as those that have several sections integrated with Rows.
But here are some considerations:
Memory Consumption: Each artboard loaded into memory is an instance with its own resources. If you have multiple artboards active at the same time, it can significantly increase the memory usage of your application.
Rendering Performance: Rendering multiple artboards might reduce the frame rate, especially if these artboards contain complex animations or are displayed on lower-end devices. This can make the application feel slower and less responsive.
Resource Management: Managing multiple artboards can complicate resource management, as each artboard might need to be loaded, initialized, and disposed of separately.
Please correct me or explain to me what other approach could be applied or what solution you would do. Thank you very much and Regards