Hi.
Can I use APP State List instead of SQLite table? For example:
I have a table of Supabase containing 9000 rows and APP State List (data type int) which can contain from 0 to 9000 rows.
When the page loads, I want to display a random ID of a row of the Supabase which is not contained in the APP State List. When the user clicks on the button, the ID is added to the APP State List
How fast/efficient will this be (considering that there can be up to 9000 rows)?
Thank you.