You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lazy loading involves loading only the components that are necessary at a given time, rather than loading everything at once. This approach can drastically reduce initial load times and memory usage.
This is done when:
Load heavy widgets conditionally based on user actions (i.e. Shuttle and Parking cards)
Use ListView.builder to lazily build its children, creating only those visible on the screen.
Time Tracking: MA-206
Lazy loading involves loading only the components that are necessary at a given time, rather than loading everything at once. This approach can drastically reduce initial load times and memory usage.
This is done when:
ListView.builder
to lazily build its children, creating only those visible on the screen.This issue is part of the Flutter Mobile App Performance Improvements Proposal
The text was updated successfully, but these errors were encountered: