Supabase Realtime Update Trick - Working

Hi there all flutterflow user..

For a few month i struggle with how to implement supabase realtime update..

From a none coding background, i having trouble when trying to figure how to implement Realtime update from flutterflow to supabase.

Found a nice trick that can resolve the issue. Because i love the community, i would like to share my method to solve this supabase real-time issue.

Here is the step i use:

  1. Integrate firebase also into your app.

  2. Add firebase db into your page or container.

  3. Use a firebase collection as place you can save any changes you do. Set field as your supabase data unique id of supabase row.

  4. Add a field as number where you will use to detect change.

  5. When any action you want to do like CRUD, update the firebase collection by incrementing the number field in the firebase db collection.

  6. Use onchange action to trigger database update for listview that use supabase.

    Hope this method could help everyone..

5
6 replies