I'm trying to find a way to get the available memory at different times in my app. I have looked a the system_info package but it states that it's not tested on both IOS and Android. Having a solid method is important for both. One developer wrote: "Unfortunately system_info doesn't support iOS but it works for MacOs"
Is there something better or more reliable for IOS and Android?
Don't know if you are understanding my issue. Maybe this will help?
Every users device has some level of available memory, from very low to very high. My worst case user can have up to 50,000 items. This many items (data and images) wouldn't fit on most devices. So I have to find some form of pagination to make their experience as painless as possible.
Getting the available memory from a device, helps me formulate a pagination-type plan. Programmatically just means I want to create the pagination-type plan internally within my Flutter app, not outside the app.