supabase v2 realtime from custom action

Actions & Logic

Hello,
Does somebody know how to listen to realtime change (insert) in a custom action with supabase v2??


Thank you in advance

What have you tried so far?

final subscription = SupaFlow.client .channel('public:my_table') .on( RealtimeListenTypes.postgresChanges, ChannelFilter( event: 'INSERT', schema: 'public', table: 'my_table', filter: 'recipient_user_id=eq.${currentUserUid}', ),

Did you check FlutterFlow's Documentation for this topic?
No
1
1 reply