Hi, I’m using Supabase with Flutter.
What is the best way to pass data from List page to detail page?
- Set id as parameter and read data on detail page
- Set Entire object as parameter and use in detail page
The first is ideal because of web URL params will clean. In this case, how can we get data from supabase on InitState.
And, the solution informed In youtube video, looks like the second.(video in older version?) https://www.youtube.com/watch?v=1x1to_qUMuQ&t=1s
I’m afraid this can be pass all the parameters in the URL in web, so I don’t want to do so.
Any feedback is welcome.